2023-04-11 23:18:07 +00:00
|
|
|
@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 %*
|
2023-04-11 23:18:07 +00:00
|
|
|
pause
|