Last active
November 19, 2023 02:29
-
-
Save saasscaleup/1f217b32edece39f8ef918f1b74e1456 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# git clone | |
git clone https://github.com/Significant-Gravitas/Auto-GPT.git Auto-GPT | |
# move to the newly created folder | |
cd Auto-GPT | |
# fetch all recent commits and branches | |
git fetch | |
# checkout to lates stable branch | |
git checkout stable | |
# copy local .env file | |
cp .env.template .env | |
# edit the .env file and add your OPENAI_API_KEY | |
OPENAI_API_KEY=#copy and paste your API key here | |
# In your terminal, type the following command. | |
docker-compose run --build --rm auto-gpt | |
# Run Auto GPT in continuous mode | |
docker-compose run --build --rm auto-gpt --continuous | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment