Spaces:
Runtime error
Runtime error
File size: 193 Bytes
b3509ba |
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 swarmai.__main__
pause
|