From 75ee98ef2596cbc967a3259ab9e9f5de9a16dc09 Mon Sep 17 00:00:00 2001 From: falkoro <39274208+falkoro@users.noreply.github.com> Date: Mon, 9 Jan 2023 11:58:29 +0000 Subject: [PATCH 1/3] added a small section on how to update the bot. --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 48d4008..9a351d7 100644 --- a/README.md +++ b/README.md @@ -267,6 +267,22 @@ cd (the folder where the files for GPT3Discord are located/cloned) python3.9 gpt3discord.py ``` +# Updating + +To update the bot, + +Run (when working in the directory of GPT3discord) + +```bash +git pull +python3.9 -m pip install -r requirements.txt +python3.9 -m pip install . +``` +With git pull you get the latest branch, and with the pip install you download the latests modules. This is just for good measure so the bot works. + + + + # Non-Server, Non-Docker usage With python3.9 installed and the requirements installed, you can run this bot anywhere. From 68f069441234a18196136d952c044f337ca9e652 Mon Sep 17 00:00:00 2001 From: falkoro <39274208+falkoro@users.noreply.github.com> Date: Mon, 9 Jan 2023 16:04:40 +0000 Subject: [PATCH 2/3] Added an upgrade section in the readme.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9a351d7..aa02f8f 100644 --- a/README.md +++ b/README.md @@ -271,14 +271,17 @@ python3.9 gpt3discord.py To update the bot, -Run (when working in the directory of GPT3discord) +run (when working in the directory of GPT3discord): ```bash +#To get the latest branch: git pull + +#Install the latest modules so the bot keeps working. python3.9 -m pip install -r requirements.txt python3.9 -m pip install . ``` -With git pull you get the latest branch, and with the pip install you download the latests modules. This is just for good measure so the bot works. + From 658cc6cd4c517163535ecd0ddde4926fc1b0df7b Mon Sep 17 00:00:00 2001 From: falkoro <39274208+falkoro@users.noreply.github.com> Date: Mon, 9 Jan 2023 16:14:32 +0000 Subject: [PATCH 3/3] removed some blanks --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index aa02f8f..579f7e8 100644 --- a/README.md +++ b/README.md @@ -282,10 +282,6 @@ python3.9 -m pip install -r requirements.txt python3.9 -m pip install . ``` - - - - # Non-Server, Non-Docker usage With python3.9 installed and the requirements installed, you can run this bot anywhere.