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
|
Installation
============
Pyresample can be installed from PyPI via pip or in a conda environment
using the conda-forge channel. The below sections will show the possible
ways to install Pyresample and what customizations can be made.
With pip
--------
Pyresample is available from PyPI and can be installed with pip:
.. code-block:: bash
pip install pyresample
With conda
----------
Pyresample can also be installed with conda or mamba via the conda-forge
channel:
.. code-block:: bash
conda install -c conda-forge pyresample
From source
-----------
You can install Pyresample from a source tarball (or other source directory):
.. code-block:: bash
tar -zxvf pyresample-<version>.tar.gz
cd pyresample-<version>
pip install .
You could also install directly from github:
.. code-block:: bash
pip install git+https://github.com/pytroll/pyresample.git@main
Where ``main`` is the primary git branch. This branch name and the user
account in the URL (``pytroll`` above) can be customized to install
in-development git branches.
For development
---------------
If you'd like to edit Pyresample and see the effects of the changes on your
current environment, you can install it in "editable" mode:
.. code-block:: bash
pip install -e .
Note that Pyresample has some C extensions that must be recompiled if modified.
This compilation only happens during installation/build time so the above
command needs to be rerun to see the effects of changes to these extension
modules.
Run tests
---------
Testing pyresample requires all optional packages to be installed.
Without all of these dependencies some tests may fail.
To run tests from a local source directory:
.. code-block:: bash
pytest pyresample/test/
Or you can run it on an installed version of the package:
.. code-block:: bash
pytest --pyargs pyresample.test
If all the tests passes the functionality of all pyresample functions on the
system has been verified.
Optional dependencies
---------------------
Pyresample has a lot of functionality that may not be necessary for all
users. These features only import their dependencies when used so it may
not be obvious that you need them until after installation. These dependencies
are not installed by default and must be installed separately.
In order to use the Pyresample plotting functionality ``cartopy`` and
``matplotlib`` must be installed. These packages are not a prerequisite
for using any other pyresample functionality.
Additionally, for ``dask`` and ``xarray`` support these libraries must also be
installed. Some utility functions may have additional, hopefully obvious,
dependencies. For example, converting an object from the ``rasterio``
library requires ``rasterio`` to be installed.
Portions of Pyresample offer non-dask multiprocessing interfaces and may have
additional dependencies to accomplish this. For example, when ``nprocs`` is
available and specified with a value greater than 1, a special ``Proj_MP`` will
be used and requires the ``KDTree`` class from the ``scipy`` package.
Newer xarray/dask interfaces are recommended when possible.
Some of pyresamples functionality uses the ``KDTree`` object from the
``pykdtree`` package. This package benefits from being built with
multi-threaded support via the OpenMP library, but this support is not
always built-in by default. See the
`pykdtree README <https://github.com/storpipfugl/pykdtree/blob/master/README.rst>`_
for build tips and suggestions. You may want to control the number of threads
used by pykdtree with the ``OMP_NUM_THREADS`` environment variable.
Pyresample also uses the `numexpr <https://github.com/pydata/numexpr>`_
package for some minor bottleneck optimization if available.
|