8000 DOCS: Use tabs for the install info by tkknight · Pull Request #6013 · SciTools/iris · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

DOCS: Use tabs for the install info #6013

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

Merged
merged 1 commit into from
Jun 19, 2024
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
49 changes: 26 additions & 23 deletions docs/src/installing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,45 +19,48 @@ Iris can be installed using conda or pip.
.. note:: This documentation was built using Python |python_version|.


.. _installing_using_conda:
.. _installing_a_released_version:

Installing a Released Version Using Conda
-----------------------------------------
Installing a Released Version
-----------------------------

To install Iris using conda, you must first download and install conda,
for example from https://docs.conda.io/en/latest/miniconda.html.
.. tab-set::

Once conda is installed, you can install Iris using conda with the following
command::
.. tab-item:: conda-forge

conda install -c conda-forge iris
To install Iris using conda, you must first download and install conda,
for example from https://docs.conda.io/en/latest/miniconda.html.

If you wish to run any of the code in the gallery you will also
need the Iris sample data. This can also be installed using conda::
Once conda is installed, you can install Iris using conda with the following
command::

conda install -c conda-forge iris-sample-data
conda install -c conda-forge iris

Further documentation on using conda and the features it provides can be found
at https://docs.conda.io/projects/conda/en/latest/index.html.
If you wish to run any of the code in the gallery you will also
need the Iris sample data. This can also be installed using conda::

.. _installing_using_pip:
conda install -c conda-forge iris-sample-data

Installing a Released Version Using Pip
---------------------------------------
Further documentation on using conda and the features it provides can be found
at https://docs.conda.io/projects/conda/en/latest/index.html.

Iris is also available from https://pypi.org/ so can be installed with ``pip``::
.. tab-item:: PyPI

pip install scitools-iris
Iris is also available from https://pypi.org/ so can be installed with ``pip``::

pip install scitools-iris

If you wish to run any of the code in the gallery you will also
need the Iris sample data. This can also be installed using pip::

pip install iris-sample-data

If you wish to run any of the code in the gallery you will also
need the Iris sample data. This can also be installed using pip::

pip install iris-sample-data

.. _installing_from_source:

Installing a Development Version from a Git Checkout
----------------------------------------------------
Installing a Development Version
--------------------------------

The latest Iris source release is available from
https://github.com/SciTools/iris.
Expand Down
Loading
0