diff --git a/docs/installation.rst b/docs/installation.rst index 854513eb9..3e00b0202 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -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``,