From c44d9a2ceffe99d9ffd0740eef3d23ed137bf0a7 Mon Sep 17 00:00:00 2001 From: ElBe <90863907+ElBe-Plaq@users.noreply.github.com> Date: Thu, 12 Jan 2023 10:18:24 +0100 Subject: [PATCH 1/2] Create run.bat --- run.bat | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 run.bat diff --git a/run.bat b/run.bat new file mode 100644 index 0000000..1f2756d --- /dev/null +++ b/run.bat @@ -0,0 +1,5 @@ +@echo off +pip install -r requirements.txt +cls +cd Bot +python bot.py From 7d6c62516e3b396aa1495b712387c127cbd4c5ec Mon Sep 17 00:00:00 2001 From: ElBe <90863907+ElBe-Plaq@users.noreply.github.com> Date: Thu, 12 Jan 2023 10:18:48 +0100 Subject: [PATCH 2/2] Create run.bash --- run.bash | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 run.bash diff --git a/run.bash b/run.bash new file mode 100644 index 0000000..a041aa4 --- /dev/null +++ b/run.bash @@ -0,0 +1,4 @@ +pip3 install -r requirements.txt || echo "PIP is required to install requirements.txt" +clear +cd Bot +python3 bot.py