From 4ea781b062b44e84e9862776a5d2c22a77d08c68 Mon Sep 17 00:00:00 2001 From: ugtthis <142481257+ugtthis@users.noreply.github.com> Date: Fri, 26 Jul 2024 19:29:08 -0700 Subject: [PATCH] Docs: Added venv step (#33097) old-commit-hash: 6f1ea5a1fd5606e3407f32ab3eacd86a02d9a6ab --- docs/docs/how-to/turn-the-speed-blue.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/docs/how-to/turn-the-speed-blue.md b/docs/docs/how-to/turn-the-speed-blue.md index 28e1a376ac..f76e9e489e 100644 --- a/docs/docs/how-to/turn-the-speed-blue.md +++ b/docs/docs/how-to/turn-the-speed-blue.md @@ -12,9 +12,14 @@ Run this to clone openpilot and install all the dependencies: curl -fsSL openpilot.comma.ai | bash ``` -Then, compile openpilot: +Navigate to openpilot folder & activate a Python virtual environment ```bash cd openpilot +source .venv/bin/activate +``` + +Then, compile openpilot: +```bash scons -j8 ```