mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-05 20:35:10 -05:00
- Remove deprecated Flutter frontend (replaced by autogpt_platform) - Remove shell scripts (run, setup, autogpt.sh, etc.) - Remove tutorials (outdated) - Remove CLI-USAGE.md and FORGE-QUICKSTART.md - Add CLAUDE.md files for Claude Code guidance Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
539 B
Bash
Executable File
18 lines
539 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ENV_PATH=$(poetry env info --path)
|
|
if [ -d "$ENV_PATH" ]; then
|
|
if [ -e delete ]; then
|
|
rm -rf "$ENV_PATH" || { echo "Please manually remove $ENV_PATH"; exit 1; }
|
|
else
|
|
echo "Press ENTER to remove $ENV_PATH"
|
|
read && { rm -r "$ENV_PATH" && echo "Removed the poetry environment at $ENV_PATH."; } || { echo "Please manually remove $ENV_PATH."; exit 1; }
|
|
fi
|
|
else
|
|
echo "No poetry environment found."
|
|
fi
|
|
|
|
poetry install --extras benchmark
|
|
echo "Setup completed successfully."
|
|
exit 0
|