Fix the poetry command

This commit is contained in:
2026-03-17 16:56:38 -07:00
parent 437ee886b7
commit f7b3370109

View File

@@ -18,7 +18,7 @@ echo "Removing existing venv to ensure clean state..."
poetry env remove python3 2>/dev/null || true
echo "Installing Python dependencies..."
poetry install --without pi --no-dev
poetry install --without pi --without dev
echo "Verifying picamera2 is accessible..."
poetry run python -c "import picamera2; print(f'picamera2 found at: {picamera2.__file__}')"