From 4422c1754fe624ceae5f7c50f904bfb413c22767 Mon Sep 17 00:00:00 2001 From: Jan Okraska Date: Tue, 23 Oct 2018 17:46:45 +0200 Subject: [PATCH] docs: virtualenv instead of mkvirtualenv (connects #106) Signed-off-by: Jan Okraska --- docs/developerguide.rst | 5 ++++- docs/gettingstarted.rst | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/developerguide.rst b/docs/developerguide.rst index d943a8d7..dd0523ab 100644 --- a/docs/developerguide.rst +++ b/docs/developerguide.rst @@ -11,6 +11,9 @@ cloning it from GitHub, you can use: .. code-block:: console - $ mkvirtualenv reana-client-latest + $ # create new virtual environment + $ virtualenv ~/.virtualenvs/myreana + $ source ~/.virtualenvs/myreana/bin/activate + $ # install reana-commons and reana-client $ pip install git+git://github.com/reanahub/reana-commons.git@master#egg=reana-commons $ pip install git+git://github.com/reanahub/reana-client.git@master#egg=reana-client diff --git a/docs/gettingstarted.rst b/docs/gettingstarted.rst index 7567a0bc..79419713 100644 --- a/docs/gettingstarted.rst +++ b/docs/gettingstarted.rst @@ -12,7 +12,10 @@ environment: .. code-block:: console - $ mkvirtualenv reana-client + $ # create new virtual environment + $ virtualenv ~/.virtualenvs/myreana + $ source ~/.virtualenvs/myreana/bin/activate + $ # install reana-client $ pip install reana-client Select REANA cloud