File size: 187 Bytes
42472b3 |
1 2 3 4 5 6 7 8 9 |
@echo off
python scripts/check_requirements.py requirements.txt
if errorlevel 1 (
echo Installing missing packages...
pip install -r requirements.txt
)
python -m autogpt %*
pause
|