AutoGPT/run.bat

9 lines
187 B
Batchfile
Raw Normal View History

@echo off
python scripts/check_requirements.py requirements.txt
if errorlevel 1 (
echo Installing missing packages...
pip install -r requirements.txt
)
2023-04-15 18:59:38 +00:00
python -m autogpt %*
pause