mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-30 03:00:41 -04:00
Restructuring the Repo to make it clear the difference between classic autogpt and the autogpt platform: * Move the "classic" projects `autogpt`, `forge`, `frontend`, and `benchmark` into a `classic` folder * Also rename `autogpt` to `original_autogpt` for absolute clarity * Rename `rnd/` to `autogpt_platform/` * `rnd/autogpt_builder` -> `autogpt_platform/frontend` * `rnd/autogpt_server` -> `autogpt_platform/backend` * Adjust any paths accordingly
30 lines
699 B
Bash
Executable File
30 lines
699 B
Bash
Executable File
#!/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
|