From 6c8a6620d26c205b504828ab8059d4580088ed4a Mon Sep 17 00:00:00 2001 From: Rick Breidenstein Date: Mon, 13 Mar 2017 16:58:44 -0400 Subject: [PATCH] specify python3 when creating virtualenv (#723) Lemur is developed against Python3.5. If you do not specify the Python version it is possible the virtualenv will be built on a different version. --- docs/quickstart/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart/index.rst b/docs/quickstart/index.rst index 25dea347..1479f0c5 100644 --- a/docs/quickstart/index.rst +++ b/docs/quickstart/index.rst @@ -59,7 +59,7 @@ Create the virtual environment, activate it and enter the Lemur's directory: .. code-block:: bash - $ virtualenv lemur + $ virtualenv -p python3 lemur $ source /www/lemur/bin/activate $ cd lemur