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 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
|
Installation
============
.. epigraph::
Make things as simple as possible, but not any simpler.
-- Albert Einstein
The Python Distutils are used to build and install PyTables, so it is fairly
simple to get the application up and running. If you want to install the
package from sources you can go on reading to the next section.
However, if you want to go straight to binaries that 'just work' for the main
platforms (Linux, Mac OSX and Windows), you might want to use the excellent
Anaconda_ or Canopy_ distributions. PyTables usually distributes its own
Windows binaries too; go :ref:`binaryInstallationDescr` for instructions.
Finally `Christoph Gohlke`_ also maintains an excellent suite of a variety of
binary packages for Windows at his site.
.. _Anaconda: https://store.continuum.io/cshop/anaconda/
.. _Canopy: https://www.enthought.com/products/canopy/
.. _`Christoph Gohlke`: http://www.lfd.uci.edu/~gohlke/pythonlibs/
Installation from source
------------------------
These instructions are for both Unix/MacOS X and Windows systems. If you are
using Windows, it is assumed that you have a recent version of MS Visual C++
compiler installed.
A GCC compiler is assumed for Unix, but other compilers should work as well.
Extensions in PyTables have been developed in Cython (see
:ref:`[CYTHON] <CYTHON>`) and the C language. You can rebuild everything from
scratch if you have Cython installed, but this is not necessary, as the Cython
compiled source is included in the source distribution.
To compile PyTables you will need a recent version of Python, the HDF5 (C
flavor) library from http://www.hdfgroup.org, and the NumPy (see
:ref:`[NUMPY] <NUMPY>`) and Numexpr (see :ref:`[NUMEXPR] <NUMEXPR>`)
packages.
Prerequisites
~~~~~~~~~~~~~
First, make sure that you have
* Python_ >= 2.7 including Python 3.x
* HDF5_ >= 1.8.4 (>=1.8.15 is strongly recommended)
* NumPy_ >= 1.8.1
* Numexpr_ >= 2.5.2
* Cython_ >= 0.21
* c-blosc_ >= 1.4.1 (sources are bundled with PyTables sources but the user can
use an external version of sources using the :envvar:`BLOSC_DIR` environment
variable or the :option:`--blosc` flag of the :file:`setup.py`)
installed (for testing purposes, we are using HDF5_ 1.8.15, NumPy_ 1.10.2
and Numexpr_ 2.5.2 currently). If you don't, fetch and install them before
proceeding.
.. _Python: http://www.python.org
.. _HDF5: http://www.hdfgroup.org/HDF5
.. _NumPy: http://www.numpy.org
.. _Numexpr: http://code.google.com/p/numexpr
.. _Cython: http://www.cython.org
.. _c-blosc: http://blosc.org
.. _argparse: http://code.google.com/p/argparse
.. _unittest2: http://pypi.python.org/pypi/unittest2
Compile and install these packages (but see :ref:`prerequisitesBinInst` for
instructions on how to install pre-compiled binaries if you are not willing
to compile the prerequisites on Windows systems).
For compression (and possibly improved performance), you will need to install
the Zlib (see :ref:`[ZLIB] <ZLIB>`), which is also required by HDF5 as well.
You may also optionally install the excellent LZO compression library (see
:ref:`[LZO] <LZO>` and :ref:`compressionIssues`). The high-performance bzip2
compression library can also be used with PyTables (see
:ref:`[BZIP2] <BZIP2>`).
The Blosc (see :ref:`[BLOSC] <BLOSC>`) compression library is embedded
in PyTables, so this will be used in case it is not found in the
system. So, in case the installer warns about not finding it, do not
worry too much ;)
**Unix**
setup.py will detect HDF5, Blosc, LZO, or bzip2 libraries and include
files under :file:`/usr` or :file:`/usr/local`; this will cover most
manual installations as well as installations from packages. If setup.py
can not find libhdf5, libhdf5 (or liblzo, or libbz2 that you may wish to
use) or if you have several versions of a library installed and want to
use a particular one, then you can set the path to the resource in the
environment, by setting the values of the :envvar:`HDF5_DIR`,
:envvar:`LZO_DIR`, :envvar:`BZIP2_DIR` or :envvar:`BLOSC_DIR` environment
variables to the path to the particular resource. You may also specify the
locations of the resource root directories on the setup.py command line.
For example::
--hdf5=/stuff/hdf5-1.8.12
--blosc=/stuff/blosc-1.8.1
--lzo=/stuff/lzo-2.02
--bzip2=/stuff/bzip2-1.0.5
If your HDF5 library was built as a shared library not in the runtime load
path, then you can specify the additional linker flags needed to find the
shared library on the command line as well. For example::
--lflags="-Xlinker -rpath -Xlinker /stuff/hdf5-1.8.12/lib"
You may also want to try setting the :envvar:`LD_LIBRARY_PATH`
environment variable to point to the directory where the shared libraries
can be found. Check your compiler and linker documentation as well as the
Python Distutils documentation for the correct syntax or environment
variable names.
It is also possible to link with specific libraries by setting the
:envvar:`LIBS` environment variable::
LIBS="hdf5-1.8.12 nsl"
Starting from PyTables 3.2 can also query the *pkg-config* database to
find the required packages. If available, pkg-config is used by default
unless explicitly disabled.
To suppress the use of *pkg-config*::
$ python setup.py build --use-pkgconfig=FALSE
or use the :envvar:`USE-PKGCONFIG` environment variable::
$ env USE_PKGCONFIG=FALSE python setup.py build
**Windows**
You can get ready-to-use Windows binaries and other development files for
most of the following libraries from the GnuWin32 project (see
:ref:`[GNUWIN32] <GNUWIN32>`). In case you cannot find the LZO binaries
in the GnuWin32 repository, you can find them at
http://sourceforge.net/projects/pytables/files/lzo-win.
Once you have installed the prerequisites, setup.py needs to know where
the necessary library *stub* (.lib) and *header* (.h) files are installed.
You can set the path to the include and dll directories for the HDF5
(mandatory) and LZO, BZIP2, BLOSC (optional) libraries in the environment,
by setting the values of the :envvar:`HDF5_DIR`, :envvar:`LZO_DIR`,
:envvar:`BZIP2_DIR` or :envvar:`BLOSC_DIR` environment variables to the
path to the particular resource. For example::
set HDF5_DIR=c:\\stuff\\hdf5-1.8.5-32bit-VS2008-IVF101\\release
set BLOSC_DIR=c:\\Program Files (x86)\\Blosc
set LZO_DIR=c:\\Program Files (x86)\\GnuWin32
set BZIP2_DIR=c:\\Program Files (x86)\\GnuWin32
You may also specify the locations of the resource root directories on the
setup.py command line.
For example::
--hdf5=c:\\stuff\\hdf5-1.8.5-32bit-VS2008-IVF101\\release
--blosc=c:\\Program Files (x86)\\Blosc
--lzo=c:\\Program Files (x86)\\GnuWin32
--bzip2=c:\\Program Files (x86)\\GnuWin32
**Development version (Unix)**
Installation of the development version is very similar to installation
from a source package (described above). There are two main differences:
#. sources have to be downloaded from the `PyTables source repository`_
hosted on GitHub_. Git (see :ref:`[GIT] <GIT>`) is used as VCS.
The following command create a local copy of latest development version
sources::
$ git clone https://github.com/PyTables/PyTables.git
#. sources in the git repository do not include pre-built documentation
and pre-generated C code of Cython extension modules. To be able to
generate them, both Cython (see :ref:`[CYTHON] <CYTHON>`) and
sphinx >= 1.0.7 (see :ref:`[SPHINX] <SPHINX>`) are mandatory
prerequisites.
.. _`PyTables source repository`: https://github.com/PyTables/PyTables
.. _GitHub: https://github.com
PyTables package installation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Once you have installed the HDF5 library and the NumPy and Numexpr packages,
you can proceed with the PyTables package itself.
#. Run this command from the main PyTables distribution directory, including
any extra command line arguments as discussed above::
$ python setup.py build
If the HDF5 installation is in a custom path, e.g. $HOME/hdf5-1.8.15pre7,
one of the following commands can be used::
$ python setup.py build --hdf5=$HOME/hdf5-1.8.15pre7
#. To run the test suite, execute any of these commands.
**Unix**
In the sh shell and its variants::
$ cd build/lib.linux-x86_64-3.3
$ env PYTHONPATH=. python tables/tests/test_all.py
or, if you prefer::
$ cd build/lib.linux-x86_64-3.3
$ env PYTHONPATH=. python -c "import tables; tables.test()"
.. note::
the syntax used above overrides original contents of the
:envvar:`PYTHONPATH` environment variable.
If this is not the desired behaviour and the user just wants to add
some path before existing ones, then the safest syntax to use is
the following::
$ env PYTHONPATH=.${PYTHONPATH:+:$PYTHONPATH} python tables/tests/test_all.py
Please refer to your :program:`sh` documentation for details.
**Windows**
Open the command prompt (cmd.exe or command.com) and type::
> cd build\\lib.linux-x86_64-2.7
> set PYTHONPATH=.;%PYTHONPATH%
> python tables\\tests\\test_all.py
or::
> cd build\\lib.linux-x86_64-2.7
> set PYTHONPATH=.;%PYTHONPATH%
> python -c "import tables; tables.test()"
Both commands do the same thing, but the latter still works on an already
installed PyTables (so, there is no need to set the :envvar:`PYTHONPATH`
variable for this case).
However, before installation, the former is recommended because it is
more flexible, as you can see below.
If you would like to see verbose output from the tests simply add the
:option:`-v` flag and/or the word verbose to the first of the command lines
above. You can also run only the tests in a particular test module.
For example, to execute just the test_types test suite, you only have to
specify it::
# change to backslashes for win
$ python tables/tests/test_types.py -v
You have other options to pass to the :file:`test_all.py` driver::
# change to backslashes for win
$ python tables/tests/test_all.py --heavy
The command above runs every test in the test unit. Beware, it can take a
lot of time, CPU and memory resources to complete::
# change to backslashes for win
$ python tables/tests/test_all.py --print-versions
The command above shows the versions for all the packages that PyTables
relies on. Please be sure to include this when reporting bugs::
# only under Linux 2.6.x
$ python tables/tests/test_all.py --show-memory
The command above prints out the evolution of the memory consumption after
each test module completion. It's useful for locating memory leaks in
PyTables (or packages behind it). Only valid for Linux 2.6.x kernels.
And last, but not least, in case a test fails, please run the failing test
module again and enable the verbose output::
$ python tables/tests/test_<module>.py -v verbose
and, very important, obtain your PyTables version information by using the
:option:`--print-versions` flag (see above) and send back both outputs to
developers so that we may continue improving PyTables.
If you run into problems because Python can not load the HDF5 library or
other shared libraries.
**Unix**
Try setting the LD_LIBRARY_PATH or equivalent environment variable to
point to the directory where the missing libraries can be found.
**Windows**
Put the DLL libraries (hdf5dll.dll and, optionally, lzo1.dll,
bzip2.dll or blosc.dll) in a directory listed in your
:envvar:`PATH` environment variable. The setup.py installation
program will print out a warning to that effect if the libraries
can not be found.
#. To install the entire PyTables Python package, change back to the root
distribution directory and run the following command (make sure you have
sufficient permissions to write to the directories where the PyTables files
will be installed)::
$ python setup.py install
Again if one needs to point to libraries installed in custom paths, then
specific setup.py options can be used::
$ python setup.py install --hdf5=/hdf5/custom/path
or::
$ env HDF5_DIR=/hdf5/custom/path python setup.py install
Of course, you will need super-user privileges if you want to install
PyTables on a system-protected area. You can select, though, a different
place to install the package using the :option:`--prefix` flag::
$ python setup.py install --prefix="/home/myuser/mystuff"
Have in mind, however, that if you use the :option:`--prefix` flag to
install in a non-standard place, you should properly setup your
:envvar:`PYTHONPATH` environment variable, so that the Python interpreter
would be able to find your new PyTables installation.
You have more installation options available in the Distutils package.
Issue a::
$ python setup.py install --help
for more information on that subject.
That's it! Now you can skip to the next chapter to learn how to use PyTables.
Installation with :program:`pip`
--------------------------------
Many users find it useful to use the :program:`pip` program (or similar ones)
to install python packages.
As explained in previous sections the user should in any case ensure that all
dependencies listed in the `Prerequisites`_ section are correctly installed.
The simplest way to install PyTables using :program:`pip` is the following::
$ pip install tables
The following example shows how to install the latest stable version of
PyTables in the user folder when a older version of the package is already
installed at system level::
$ pip install --user --upgrade tables
The `--user` option tells to the :program:`pip` tool to install the package in
the user folder (``$HOME/.local`` on GNU/Linux and Unix systems), while the
`--upgrade` option forces the installation of the latest version even if an
older version of the package is already installed.
Additional options for the setup.py script can be specified using them
`--install-option`::
$ pip install --install-option='--hdf5=/custom/path/to/hdf5' tables
or::
$ env HDF5_DIR=/custom/path/to/hdf5 pip install tables
The :program:`pip` tool can also be used to install packages from a source
tar-ball::
$ pip install tables-3.0.0.tar.gz
To install the development version of PyTables from the *develop* branch of
the main :program:`git` :ref:`[GIT] <GIT>` repository the command is the
following::
$ pip install git+https://github.com/PyTables/PyTables.git@develop#egg=tables
A similar command can be used to install a specific tagged fersion::
$ pip install git+https://github.com/PyTables/PyTables.git@v.2.4.0#egg=tables
Finally, PyTables developers provide a :file:`requirements.txt` file that
can be used by :program:`pip` to install the PyTables dependencies::
$ wget https://raw.github.com/PyTables/PyTables/develop/requirements.txt
$ pip install -r requirements.txt
Of course the :file:`requirements.txt` file can be used to install only
python packages. Other dependencies like the HDF5 library of compression
libraries have to be installed by the user.
.. note::
Recent versions of Debian_ and Ubuntu_ the HDF5 library is installed in
with a very peculiar layout that allows to have both the serial and MPI
versions installed at the same time.
PyTables >= 3.2 natively supports the new layout via *pkg-config* (that
is expected to be installed on the system at build time).
If *pkg-config* is not available or PyTables is older that verison 3.2,
then the following command can be used::
$ env CPPFLAGS=-I/usr/include/hdf5/serial \
LDFLAGS=-L/usr/lib/x86_64-linux-gnu/hdf5/serial python3 setup.py install
or::
$ env CPPFLAGS=-I/usr/include/hdf5/serial \
LDFLAGS=-L/usr/lib/x86_64-linux-gnu/hdf5/serial pip install tables
.. _Debian: https://www.debian.org
.. _Ubuntu: http://www.ubuntu.com
.. _binaryInstallationDescr:
Binary installation (Windows)
-----------------------------
This section is intended for installing precompiled binaries on Windows
platforms. Binaries are distribution in wheel format, which can be downloaded
and installed using pip as described above. You may also find it useful for
instructions on how to install *binary prerequisites* even if you want to
compile PyTables itself on Windows.
.. _prerequisitesBinInst:
Windows prerequisites
~~~~~~~~~~~~~~~~~~~~~
First, make sure that you have Python 2.7, NumPy 1.8.0 and Numexpr 2.5.2 or
higher installed.
To enable compression with the optional LZO library (see the
:ref:`compressionIssues` for hints about how it may be used to improve
performance), fetch and install the LZO from
http://sourceforge.net/projects/pytables/files/lzo-win (choose v1.x for
Windows 32-bit and v2.x for Windows 64-bit).
Normally, you will only need to fetch that package and copy the included
lzo1.dll/lzo2.dll file in a directory in the PATH environment variable
(for example C:\\WINDOWS\\SYSTEM) or
python_installation_path\\Lib\\site-packages\\tables (the last directory may
not exist yet, so if you want to install the DLL there, you should do so
*after* installing the PyTables package), so that it can be found by the
PyTables extensions.
Please note that PyTables has internal machinery for dealing with uninstalled
optional compression libraries, so, you don't need to install the LZO or bzip2
dynamic libraries if you don't want to.
PyTables package installation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
On PyPI wheels for 32 and 64-bit versions of Windows and are usually provided. They
are automatically found and installed using pip::
$ pip install tables
If a matching wheel cannot be found for your installation, third party built wheels
can be found e.g. at the `Unofficial Windows Binaries for Python Extension Packages
<http://www.lfd.uci.edu/~gohlke/pythonlibs/#pytables>`_ page. Download the wheel
matching the version of python and either the 32 or 64-bit version and install
using pip::
# python 3.5 64-bit:
$ pip install tables-3.3-cp35-cp35m-win_amd64.whl
You can (and *you should*) test your installation by running the next
commands::
>>> import tables
>>> tables.test()
on your favorite python shell. If all the tests pass (possibly with a few
warnings, related to the potential unavailability of LZO lib) you already have
a working, well-tested copy of PyTables installed! If any test fails, please
copy the output of the error messages as well as the output of::
>>> tables.print_versions()
and mail them to the developers so that the problem can be fixed in future
releases.
You can proceed now to the next chapter to see how to use PyTables.
|