mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-12 18:54:26 +01:00
14 lines
271 B
Bash
Executable File
14 lines
271 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ENV_PATH=$(poetry env info --path)
|
|
if [ -d "$ENV_PATH" ]; then
|
|
rm -rf $ENV_PATH
|
|
echo "Removed the poetry environment at $ENV_PATH."
|
|
else
|
|
echo "No poetry environment found."
|
|
fi
|
|
|
|
poetry install
|
|
echo "Setup completed successfully."
|
|
exit 0
|