1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
|
.. _installing-yt:
Getting and Installing yt
=========================
.. contents::
:depth: 2
:local:
:backlinks: none
.. _getting-yt:
Disclaimer
----------
The Python ecosystem offers many viable tools to setup isolated
Python environments, including but not restricted to
- `venv <https://docs.python.org/3/library/venv.html>`_ (part of the Python standard library)
- `Anaconda/conda <https://docs.conda.io/en/latest/index.html>`_
- `virtualenv <https://virtualenv.pypa.io/en/latest/>`_
We strongly recommend you choose and learn one. However, it is beyond the
scope of this page to cover every situation.
We will show you how to install a stable release or from source, using conda
or pip, and we will *assume* that you do so in an isolated environment.
Also note that each yt release supports a limited range of Python versions.
Here's a summary for most recent releases
+------------+------------+----------------+-----------------+
| yt release | Python 2.7 | Python3 min | Python3 max |
+============+============+================+=================+
| 4.4.x | no | 3.10.3 | 3.13 (expected) |
+------------+------------+----------------|-----------------|
| 4.3.x | no | 3.9.2 | 3.12 |
+------------+------------+----------------+-----------------+
| 4.2.x | no | 3.8 | 3.11 |
+------------+------------+----------------+-----------------+
| 4.1.x | no | 3.7 | 3.11 |
+------------+------------+----------------+-----------------+
| 4.0.x | no | 3.6 | 3.10 |
+------------+------------+----------------+-----------------+
| 3.6.x | no | 3.5 | 3.8 |
+------------+------------+----------------+-----------------+
| 3.5.x | yes | 3.4 | 3.5 |
+------------+------------+----------------+-----------------+
Minimum Python versions are strict requirements, while maximum
indicates the newest version for which the yt development team
provides pre-compiled binaries via PyPI and conda-forge.
It may be possible to compile existing yt versions under more
recent Python versions, though this is never guaranteed.
yt also adheres to `SPEC 0 <https://scientific-python.org/specs/spec-0000/>`_ as a soft
guideline for our support policy of core dependencies (Python, numpy, matplotlib ...).
Getting yt
----------
In this document we describe several methods for installing yt. The method that
will work best for you depends on your precise situation:
* If you need a stable build, see :ref:`install-stable`
* If you want to build the development version of yt see :ref:`install-from-source`.
.. _install-stable:
Installing a stable release
+++++++++++++++++++++++++++
The latest stable release can be obtained from PyPI with pip
.. code-block:: bash
$ python -m pip install --upgrade pip
$ python -m pip install --user yt
Or using the Anaconda/Miniconda Python distributions
.. code-block:: bash
$ conda install --channel conda-forge yt
.. _install-additional:
Additional requirements (pip only)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
yt knows about several data file formats. In many cases (e.g. HDF5), additional
dependencies are needed to enable parsing, that are not installed with yt by default.
In order to install all required packages for a specific format alongside yt,
one can specify them as, for instance
.. code-block:: bash
$ python -m pip install --upgrade pip
$ python -m pip install --user "yt[ramses]"
Extra requirements can be combined, separated by commas (say ``yt[ramses,enzo_e]``).
Note that all format names are normalized to lower case.
.. _install-from-source:
Building from source
++++++++++++++++++++
There are a couple ways to build yt from source with e.g., ``pip``, all of which
require a C compiler (such as ``gcc`` or ``clang``).
yt is primarily distributed on PyPI, in the form of pre-built binaries (wheels).
Since version 4.5.0, these binaries are optimized for portability accross Python versions.
If you need a stable release, but pre-built binaries are not available for your platform,
``pip install`` will automatically select a source distribution and compile the package
for you. You may opt-into this behavior deliberately by specifying the ``--no-binary``
flag, in which case the resulting installation might be slightly more performant, because
it will be compiled specifically for your Python version.
If, on the other hand, you *specifically* want a portable binary (as the ones we provide on
PyPI), this is achieved by setting ``YT_LIMITED_API=1`` in your build environment.
You may also want to build yt directly from the github repository (which requires ``git``),
for instance if you need the latest development version, or if you want to contribute to
the project. Run
.. code-block:: bash
$ git clone https://github.com/yt-project/yt
$ cd yt
$ python -m pip install --upgrade pip
$ python -m pip install --user -e .
.. _optional-runtime-deps:
Leveraging optional yt runtime dependencies
+++++++++++++++++++++++++++++++++++++++++++
Some relatively heavy runtime dependencies are not included in your build by
default as they may be irrelevant in your workflow. Common examples include
h5py, mpi4py, astropy or scipy. yt implements a on-demand import mechanism that
allows it to run even when they are not installed *until they're needed*, in
which case it will raise an ``ImportError``, pointing to the missing requirement.
If you wish to get everything from the start, you may specify it when building
yt as by appending ``[full]`` to the target name when calling pip, i.e.,
.. code-block:: bash
$ # stable release
$ python -m pip install --user yt[full]
$ # from source
$ python -m pip install --user -e .[full]
.. _testing-installation:
Testing Your Installation
+++++++++++++++++++++++++
To make sure everything is installed properly, try running yt at
the command line:
.. code-block:: bash
$ python -c "import yt"
If this runs without raising errors, you have successfully installed yt. Congratulations!
Otherwise, read the error message carefully and follow any instructions it gives
you to resolve the issue. Do not hesitate to :ref:`contact us <asking-for-help>`
so we can help you figure it out.
.. _updating:
Updating yt
+++++++++++
For pip-based installations:
.. code-block:: bash
$ python -m pip install --upgrade yt
For conda-based installations:
.. code-block:: bash
$ conda update yt
For git-based installations (yt installed from source), we provide the following
one-liner facility
.. code-block:: bash
$ yt update
This will pull any changes from GitHub, and recompile yt if necessary.
Uninstalling yt
+++++++++++++++
If you've installed via pip (either from Pypi or from source)
.. code-block:: bash
$ python -m pip uninstall yt
Or with conda
.. code-block:: bash
$ conda uninstall yt
TroubleShooting
---------------
If you are unable to locate the yt executable (i.e. executing ``yt version``
at the bash command line fails), then you likely need to add the
``$HOME/.local/bin`` (or the equivalent on your OS) to your PATH. Some Linux
distributions do not include this directory in the default search path.
Additional Resources
--------------------
.. _distro-packages:
yt Distribution Packages
++++++++++++++++++++++++
Some operating systems have yt pre-built packages that can be installed with the
system package manager. Note that the packages in some of these distributions
may be out of date.
.. note::
Since the third-party packages listed below are not officially supported by
yt developers, support should not be sought out on the project mailing lists
or Slack channels. All support requests related to these packages should be
directed to their official maintainers.
While we recommended installing yt with either pip or conda, a number of
third-party packages exist for the distributions listed below.
.. image:: https://repology.org/badge/vertical-allrepos/python:yt.svg?header=yt%20packaging%20status
:target: https://repology.org/project/python:yt/versions
Intel distribution for Python
+++++++++++++++++++++++++++++
A viable alternative to the installation based on Anaconda is the use of the
`Intel Distribution for Python
<https://software.intel.com/en-us/distribution-for-python>`_. For `Parallel
Computation
<http://yt-project.org/docs/dev/analyzing/parallel_computation.html>`_ on Intel
architectures, especially on supercomputers, a large `performance and
scalability improvement <https://arxiv.org/abs/1910.07855>`_ over several common
tasks has been demonstrated. See `Parallel Computation
<http://yt-project.org/docs/dev/analyzing/parallel_computation.html>`_ for a
discussion on using yt in parallel. Leveraing this specialized distribution for
yt requires that you install some dependencies from the intel conda channel
before installing yt itself, like so
.. code-block:: bash
$ conda install -c intel numpy scipy mpi4py cython git sympy ipython matplotlib netCDF4
$ python -m install --user yt
|