Spaces:
Build error
Build error
File size: 699 Bytes
3382f47 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
#!/usr/bin/env bash
function find_python_command() {
if command -v python3 &> /dev/null
then
echo "python3"
elif command -v python &> /dev/null
then
echo "python"
else
echo "Python not found. Please install Python."
exit 1
fi
}
PYTHON_CMD=$(find_python_command)
if $PYTHON_CMD -c "import sys; sys.exit(sys.version_info < (3, 10))"; then
if ! $PYTHON_CMD scripts/check_requirements.py; then
echo
poetry install --without dev
echo
echo "Finished installing packages! Starting AutoGPT..."
echo
fi
poetry run autogpt "$@"
else
echo "Python 3.10 or higher is required to run Auto GPT."
fi
|