@@ -33,35 +33,32 @@ develop Galaxy tools.
3333Obtaining Planemo
3434-----------------
3535
36- The recommended approach for installing Planemo is to use Homebrew _ or
37- linuxbrew _. To install Planemo this way use the `` brew `` command as
38- follows .
36+ For a traditional Python installation of Planemo, first set up a virtualenv
37+ for `` planemo `` (this example creates a new one in `` .venv ``) and then
38+ install with `` pip ``. Planemo requires pip 7.0 or newer .
3939
4040::
4141
42- $ brew tap galaxyproject/tap
43- $ brew install planemo
42+ $ virtualenv .venv; . .venv/bin/activate
43+ $ pip install "pip>=7" # Upgrade pip if needed.
44+ $ pip install planemo
4445
45-
46- Planemo can alternatively be installed via Conda _:
46+ Another approach for installing Planemo is to use Homebrew _ or
47+ linuxbrew _. To install Planemo this way use the ``brew `` command as
48+ follows.
4749
4850::
4951
50- $ conda config --add channels r
51- $ conda config --add channels bioconda
52- $ conda install planemo
53-
54- For third option and a more traditional Python installation set up a virtualenv
55- for Planemo (this example creates a new one in ``.venv/ ``) and then
56- install it with ``pip ``.
57-
58- ::
52+ $ brew tap galaxyproject/tap
53+ $ brew install planemo
5954
60- $ virtualenv .venv; . .venv/bin/activate
61- $ pip install planemo
55+ For information on updating Planemo, installing the latest development release,
56+ or installing planemo via bioconda - checkout the `installation
57+ <http://planemo.readthedocs.io/en/latest/installation.html> `__
58+ documentation.
6259
6360Planemo is also available as a `virtual appliance
64- <https://planemo.readthedocs.org /en/latest/appliance.html> `_ bundled
61+ <https://planemo.readthedocs.io /en/latest/appliance.html> `_ bundled
6562with a preconfigured Galaxy server and set up for Galaxy tool development.
6663You can choose from open virtualization format (OVA _, .ova), Docker _,
6764or Vagrant _ appliances.
0 commit comments