Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update installation.rst #1032

Merged
merged 3 commits into from
Jul 26, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@ Installation
pip_
============

For a traditional Python installation of Planemo, first set up a virtualenv
for ``planemo`` (this example creates a new one in ``.venv``) and then
For a traditional Python installation of Planemo, first set up a virtual environment
for ``planemo`` (this example creates a new one in ``planemo``) and then
install with ``pip``. Planemo requires pip 7.0 or newer.

::

$ virtualenv .venv; . .venv/bin/activate
$ pip install "pip>=7" # Upgrade pip if needed.
$ python3 -m venv planemo
$ . planemo/bin/activate
$ pip install planemo

When installed this way, planemo can be upgraded as follows:

::

$ . .venv/bin/activate
$ . planemo/bin/activate
$ pip install -U planemo

To install or update to the latest development branch of planemo with ``pip``,
Expand Down