mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-18 14:34:23 +01:00
10 lines
226 B
Bash
Executable File
10 lines
226 B
Bash
Executable File
#!/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..."
|