autogpt / forge /setup
kakumusic's picture
Upload folder using huggingface_hub
b225a21 verified
raw
history blame contribute delete
290 Bytes
#!/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 --extras benchmark
echo "Setup completed successfully."
exit 0