Spaces:
Runtime error
Runtime error
File size: 232 Bytes
b3509ba |
1 2 3 4 5 6 7 8 9 10 |
#!/bin/bash
python scripts/check_requirements.py requirements.txt
if [ $? -eq 1 ]
then
echo Installing missing packages...
pip install -r requirements.txt
fi
python -m swarmai.__main__
read -p "Press any key to continue..."
|