From d956648eb4b481113604d4c723ad86a511292cf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Geron?= Date: Mon, 3 Sep 2018 22:26:31 +0200 Subject: [PATCH] Fix the virtualenv activation command for Windows (fixes #287) --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 6424ef5..eef362c 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,10 @@ Now you must activate this environment. You will need to run this command every $ source ./env/bin/activate +On Windows, the command is slightly different: + + $ .\env\Scripts\activate + Next, use pip to install the required python packages. If you are not using virtualenv, you should add the `--user` option (alternatively you could install the libraries system-wide, but this will probably require administrator rights, e.g. using `sudo pip3` instead of `pip3` on Linux). $ pip3 install --upgrade -r requirements.txt