From a4b5f1646048c5ca3d4a1f6d1351642e217ac942 Mon Sep 17 00:00:00 2001 From: MindFlow Date: Tue, 16 Jul 2024 03:55:28 -0400 Subject: [PATCH] Update installing-from-source.rst Adjusting the paths for venv, zsh was wrong, I'm assuming other 2 require similar changes. --- src/installing-from-source.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/installing-from-source.rst b/src/installing-from-source.rst index 9983007..a201448 100644 --- a/src/installing-from-source.rst +++ b/src/installing-from-source.rst @@ -71,11 +71,11 @@ Now activate the virtualenv in your current shell session: .. code-block:: sh # For bash/zsh users: - source ./venv/bin/activate + source ~/.venv/bin/activate # For Windows git bash users: - source ./venv/Scripts/activate + source ~/.venv/Scripts/activate # For fish users: - source ./venv/bin/activate.fish + source ~/.venv/bin/activate.fish All the modules need to be installed in the same env in order to avoid build issues. This is why creating a single venv for all activitywatch repos is important and why relying on poetry to setup a per-folder venv is not an option.