File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -93,9 +93,22 @@ ros-source
9393# Return to original directory
9494popd > /dev/null
9595
96+ # Quick verification that critical packages are available
97+ echo " [Verification] Checking critical dependencies..."
98+ if ! python -c " import pyaudio" 2> /dev/null; then
99+ echo " "
100+ echo " ⚠️ Warning: PyAudio not available in virtual environment"
101+ echo " This is required for TTS functionality."
102+ echo " Please run the setup script to install dependencies:"
103+ echo " ./scripts/setup_workspace.sh"
104+ echo " "
105+ return 1
106+ fi
107+
96108echo " "
97109echo " ✓ Workspace activation complete!"
98110echo " Virtual environment: $VENV_NAME "
99111echo " Python: $( which python) "
112+ echo " PyAudio: Available ✓"
100113echo " ROS2 workspace ready for development"
101114echo " "
You can’t perform that action at this time.
0 commit comments