We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb9ccd2 commit 81136e9Copy full SHA for 81136e9
scripts/activate_workspace.sh
@@ -64,8 +64,12 @@ COFFEE_WS_PATH="$REPO_ROOT/coffee_ws"
64
# Check if the venv exists
65
if [ ! -d "$VENV_PATH" ]; then
66
echo "Error: Virtual environment not found at $VENV_PATH"
67
- echo "Please create the virtual environment first:"
68
- echo " python3 -m venv $VENV_PATH"
+ echo ""
+ echo "It looks like you haven't run the initial setup yet."
69
+ echo "Please run the setup script first:"
70
+ echo " ./scripts/setup_workspace.sh"
71
72
+ echo "This will install system dependencies and create the virtual environment."
73
return 1
74
fi
75
0 commit comments