mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-18 14:34:23 +01:00
9 lines
187 B
Batchfile
9 lines
187 B
Batchfile
@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
|