From f7b3370109c54356c73d00c753051fd261b03193 Mon Sep 17 00:00:00 2001 From: Andrew Kettel Date: Tue, 17 Mar 2026 16:56:38 -0700 Subject: [PATCH] Fix the poetry command --- scripts/setup_pi.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/setup_pi.sh b/scripts/setup_pi.sh index fc3bdc2..a7810cc 100755 --- a/scripts/setup_pi.sh +++ b/scripts/setup_pi.sh @@ -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__}')"