Skip to content

Commit

Permalink
docs: virtualenv instead of mkvirtualenv
Browse files Browse the repository at this point in the history
(connects reanahub#106)

Signed-off-by: Jan Okraska <[email protected]>
  • Loading branch information
okraskaj committed Oct 24, 2018
1 parent 87f5c97 commit 4422c17
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion docs/developerguide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 4 additions & 1 deletion docs/gettingstarted.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4422c17

Please sign in to comment.