AutoGPT/run.sh

10 lines
226 B
Bash
Raw Normal View History

2023-04-15 23:37:50 +00:00
#!/bin/bash
python scripts/check_requirements.py requirements.txt
if [ $? -eq 1 ]
then
echo Installing missing packages...
pip install -r requirements.txt
fi
python -m autogpt $@
read -p "Press any key to continue..."