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
|
.. _install:
Installation
============
.. _install_recommends:
It is highly recommended that you use a pre-built version of h5py, either from a
Python Distribution, an OS-specific package manager, or a pre-built wheel from
PyPI.
Be aware however that most pre-built versions lack MPI support, and that they
are built against a specific version of HDF5. If you require MPI support, or
newer HDF5 features, you will need to build from source.
After installing h5py, you should run the tests to be sure that everything was
installed correctly. This can be done in the python interpreter via::
import h5py
h5py.run_tests()
.. _prebuilt_install:
Pre-built installation (recommended)
-----------------------------------------
Pre-build h5py can be installed via many Python Distributions, OS-specific
package managers, or via h5py wheels.
Python Distributions
....................
If you do not already use a Python Distribution, we recommend either
`Anaconda <http://continuum.io/downloads>`_/`Miniconda <http://conda.pydata.org/miniconda.html>`_
or
`Enthought Canopy <https://www.enthought.com/products/canopy/>`_, both of which
support most versions of Microsoft Windows, OSX/MacOS, and a variety of Linux
Distributions. Installation of h5py can be done on the command line via::
$ conda install h5py
for Anaconda/MiniConda, and via::
$ enpkg h5py
for Canopy.
Wheels
......
If you have an existing Python installation (e.g. a python.org download,
or one that comes with your OS), then on Windows, MacOS/OSX, and
Linux on Intel computers, pre-built h5py wheels can be installed via pip from
PyPI::
$ pip install h5py
Additionally, for Windows users, `Chris Gohlke provides third-party wheels
which use Intel's MKL <http://www.lfd.uci.edu/~gohlke/pythonlibs/>`_.
OS-Specific Package Managers
............................
On OSX/MacOS, h5py can be installed via `Homebrew <https://brew.sh/>`_,
`Macports <https://www.macports.org/>`_, or `Fink <http://finkproject.org/>`_.
The current state of h5py in various Linux Distributions can be seen at
https://pkgs.org/download/python-h5py, and can be installed via the package
manager.
As far as the h5py developers know, none of the Windows package managers (e.g.
`Chocolatey <https://chocolatey.org/>`_, `nuget <https://www.nuget.org/>`_)
have h5py included, however they may assist in installing h5py's requirements
when building from source.
.. _source_install:
Source installation
-------------------
To install h5py from source, you need:
* A supported Python version with development headers
* HDF5 1.10.4 or newer with development headers
* HDF5 versions newer than the h5py version you're using might not work.
* Odd minor versions of HDF5 (e.g. 1.13) are experimental, and might not work.
Use a 'maintenance' version like 1.12.x if possible.
* If you need support for older HDF5 versions, h5py up to version 3.9
supported HDF5 1.8.4 and above.
* A C compiler
On Unix platforms, you also need ``pkg-config`` unless you explicitly specify
a path for HDF5 as described in :ref:`custom_install`.
There are notes below on installing HDF5, Python and a C compiler on different
platforms.
Building h5py also requires several Python packages, but in most cases pip will
automatically install these in a build environment for you, so you don't need to
deal with them manually. See :ref:`dev_install` for a list.
The actual installation of h5py should be done via::
$ pip install --no-binary=h5py h5py
or, from a tarball or git :ref:`checkout <git_checkout>`::
$ pip install -v .
.. _dev_install:
Development installation
........................
When modifying h5py, you often want to reinstall it quickly to test your changes.
To benefit from caching and use NumPy & Cython from your existing Python
environment, run::
$ H5PY_SETUP_REQUIRES=0 python3 setup.py build
$ python3 -m pip install . --no-build-isolation
For convenience, these commands are also in a script ``dev-install.sh`` in the
h5py git repository.
This skips setting up a build environment, so you should
have already installed Cython, NumPy, pkgconfig (a Python interface to
``pkg-config``) and mpi4py (if you want MPI integration - see :ref:`build_mpi`).
See ``setup.py`` for minimum versions.
This will normally rebuild Cython files automatically when they change, but
sometimes it may be necessary to force a full rebuild. The easiest way to
achieve this is to discard everything but the code committed to git. In the root
of your git checkout, run::
$ git clean -xfd
Then build h5py again as above.
Source installation on OSX/MacOS
................................
HDF5 and Python are most likely in your package manager (e.g. `Homebrew <https://brew.sh/>`_,
`Macports <https://www.macports.org/>`_, or `Fink <http://finkproject.org/>`_).
Be sure to install the development headers, as sometimes they are not included
in the main package.
XCode comes with a C compiler (clang), and your package manager will likely have
other C compilers for you to install.
Source installation on Linux/Other Unix
.......................................
HDF5 and Python are most likely in your package manager. A C compiler almost
definitely is, usually there is some kind of metapackage to install the
default build tools, e.g. ``build-essential``, which should be sufficient for our
needs. Make sure that that you have the development headers, as they are
usually not installed by default. They can usually be found in ``python-dev`` or
similar and ``libhdf5-dev`` or similar.
Source installation on Windows
..............................
Installing from source on Windows is a much more difficult prospect than
installing from source on other OSs, as not only are you likely to need to
compile HDF5 from source, everything must be built with the correct version of
Visual Studio. Additional patches are also needed to HDF5 to get HDF5 and Python
to work together.
We recommend examining the appveyor build scripts, and using those to build and
install HDF5 and h5py.
Downstream packagers
....................
If you are building h5py for another packaging system - e.g. Linux distros or
packaging aimed at HPC users - you probably want to satisfy build dependencies
from your packaging system. To build without automatically fetching
dependencies, use a command like::
H5PY_SETUP_REQUIRES=0 pip install . --no-deps --no-build-isolation
Depending on your packaging system, you may need to use the ``--prefix`` or
``--root`` options to control where files get installed.
h5py's Python packaging has build dependencies on the oldest compatible
versions of NumPy and mpi4py. You can build with newer versions of these,
but the resulting h5py binaries will only work with the NumPy & mpi4py versions
they were built with (or newer). Mpi4py is an optional dependency, only required
for :ref:`parallel` features.
You should also look at the build options under :ref:`custom_install`.
.. _custom_install:
Custom installation
-------------------
.. important:: Remember that pip installs wheels by default.
To perform a custom installation with pip, you should use::
$ pip install --no-binary=h5py h5py
or build from a git checkout or downloaded tarball to avoid getting
a pre-built version of h5py.
You can specify build options for h5py as environment variables when you build
it from source::
$ HDF5_DIR=/path/to/hdf5 pip install --no-binary=h5py h5py
$ HDF5_VERSION=X.Y.Z pip install --no-binary=h5py h5py
$ CC="mpicc" HDF5_MPI="ON" HDF5_DIR=/path/to/parallel-hdf5 pip install --no-binary=h5py h5py
The supported build options are:
- To specify where to find HDF5, use one of these options:
- ``HDF5_LIBDIR`` and ``HDF5_INCLUDEDIR``: the directory containing the
compiled HDF5 libraries and the directory containing the C header files,
respectively.
- ``HDF5_DIR``: a shortcut for common installations, a directory with ``lib``
and ``include`` subdirectories containing compiled libraries and C headers.
- ``HDF5_PKGCONFIG_NAME``: A name to query ``pkg-config`` for.
If none of these options are specified, h5py will query ``pkg-config`` by
default for ``hdf5``, or ``hdf5-openmpi`` if building with MPI support.
- ``HDF5_MPI=ON`` to build with MPI integration - see :ref:`build_mpi`.
- ``HDF5_VERSION`` to force a specified HDF5 version. In most cases, you don't
need to set this; the version number will be detected from the HDF5 library.
- ``H5PY_SYSTEM_LZF=1`` to build the bundled LZF compression filter
(see :ref:`dataset_compression`) against an external LZF library, rather than
using the bundled LZF C code.
.. _build_mpi:
Building against Parallel HDF5
------------------------------
If you just want to build with ``mpicc``, and don't care about using Parallel
HDF5 features in h5py itself::
$ export CC=mpicc
$ pip install --no-binary=h5py h5py
If you want access to the full Parallel HDF5 feature set in h5py
(:ref:`parallel`), you will further have to build in MPI mode. This can be done
by setting the ``HDF5_MPI`` environment variable::
$ export CC=mpicc
$ export HDF5_MPI="ON"
$ pip install --no-binary=h5py h5py
You will need a shared-library build of Parallel HDF5 as well, i.e. built with
``./configure --enable-shared --enable-parallel``.
On Windows, MS-MPI is usually used which does not have an ``mpicc`` wrapper.
Instead, you may use the ``H5PY_MSMPI`` environment variable to ``ON`` in
order to query the system for MS-MPI's information.
|