.. _Installation:
Installation
============
*silx* supports most operating systems and different versions of the Python
programming language.
This table summarizes the support matrix of silx:
+------------+--------------+--------------------------------+
| System | Python vers. | Qt and its bindings |
+------------+--------------+--------------------------------+
| `Windows`_ | 3.8-3.12 | PyQt5.9+, PySide6.4+, PyQt6.3+ |
+------------+--------------+--------------------------------+
| `MacOS`_ | 3.8-3.12 | PyQt5.9+, PySide6.4+, PyQt6.3+ |
+------------+--------------+--------------------------------+
| `Linux`_ | 3.8-3.12 | PyQt5.9+, PySide6.4+, PyQt6.3+ |
+------------+--------------+--------------------------------+
For the description of *silx* dependencies, see the Dependencies_ section.
For all platforms, you can install *silx* with pip, see `Installing with pip`_.
To install *silx* in a `Virtual Environment`_, there is short version here-after
and a longer description: :ref:`silx-venv`.
You can also install *silx* from the source, see `Installing from source`_.
Installing with pip
-------------------
To install silx (and all its dependencies_), run:
.. code-block:: bash
pip install silx[full]
To install silx with a minimal set of dependencies, run:
.. code-block:: bash
pip install silx
.. note::
Use pip's ``--user`` option to install locally for the current user.
.. note::
- If numpy is not yet installed, you might need to install it first.
- Replace the ``pip`` command with ``pip3`` to install *silx* or any other library for Python 3.
Dependencies
------------
.. _dependencies:
The mandatory dependencies are:
- `numpy `_
- `h5py `_
- `fabio `_
The GUI widgets depend on the following extra packages:
* A Qt binding: either `PyQt5 `_,
`PySide6 `_ or
`PyQt6 `_
* `matplotlib `_
* `PyOpenGL `_
* `qt_console `_
for the ``silx.gui.console`` widget.
* `dateutil `_
*silx.opencl* further depends on OpenCL and the following packages too :
* `pyopencl `_
* `Mako `_
The complete list of dependencies with the minimal version is described in the
`requirement.txt `_
at the top level of the source package.
Build dependencies
++++++++++++++++++
In addition to run-time dependencies, building *silx* requires a C/C++ compiler,
`numpy `_ and `cython `_.
The complete list of dependencies for building the package, including its
documentation, is described in the
`requirement-dev.txt `_
at the top level of the source package.
Linux
-----
Packages are available for a few distributions:
- Debian/Ubuntu: see `Installing a Debian package`_.
- `CentOS 7 RPM packages `_ provided by the Max IV institute at Lund, Sweden.
- `Fedora 23 rpm packages `_ provided by the Max IV institute at Lund, Sweden.
- `Arch Linux (AUR) package `_ provided by Leonid Bloch.
You can also follow one of those installation procedures:
- `Installing with pip`_
- Installing in a `Virtual Environment`_
- `Installing from source`_
Installing a Debian package
+++++++++++++++++++++++++++
silx is officially packaged in `Debian `_
and `Ubuntu `_.
To install it, run `apt-get install silx` as root.
The `python3-silx` package provides the library, while the `silx` package provides the executable (`silx view`, `silx convert`, ...).
Unofficial (possibly more recent) packages are available for Debian 10 (Buster, amd64) and Ubuntu 20.04 (Focal, amd64 and ppc64le) in this repository: http://www.silx.org/pub/linux-repo/.
See information on `how-to use this repository `_ before running `apt-get install silx`.
.. note::
Those packages are built automatically, hence not signed.
You have to accept the installation of non-signed packages.
If the packages are not installed, it might be due to the priority list.
You can display the priority list using `apt-cache policy silx`.
If the Pin-number of silx.org is too low compared to other sources,
see the "Information/Troubleshooting" section `here `_,
and start the update/install procedure again.
Windows
-------
The simplest way of installing *silx* on Windows is to install it with ``pip``, see `Installing with pip`_::
pip install silx[full]
This assumes you have Python and pip installed and configured.
If you don't, read the following sections.
Alternatively, you can check:
- Installing in a `Virtual Environment`_
- `Installing from source`_
Installing Python
+++++++++++++++++
Download and install Python from `python.org `_.
We recommend that you install the 64bit version of Python, which is not the
default version suggested on the Python website.
The 32bit version has limited memory, and also we don't provide a
binary wheel for it.
This means that you would have to install *silx* from its sources, which requires
you to install a C compiler first.
Configure Python as explained on
`docs.python.org `_
to add the python installation directory to your PATH environment variable.
Alternative Scientific Python stacks exists such as
`WinPython `_ or `Anaconda `_.
They all offer most of the scientific packages already installed which makes the
installation of dependencies much easier.
Using pip
+++++++++
Configure your PATH environment variable to include the pip installation
directory, the same way as described for Python.
The pip installation directory will likely be ``C:\Python35\Scripts\``.
Then you will be able to use all the pip commands listed below in a command
prompt.
MacOS
-----
Make sure to use python3 to install silx (you might need to install python3).
Then, install *silx* with ``pip``, see `Installing with pip`_::
pip install silx[full]
This should work without issues, as binary wheels of *silx* are provided on
PyPi.
Virtual Environment
-------------------
Virtual environments are self-contained directory trees that contain a Python
installation for a particular version of Python, plus a number of additional
packages.
They do not require administrator privileges, nor *root* access.
To create a virtual environment, decide upon a directory where you want to place
it (for example *myenv*), and run the *venv* module as a script with the directory path:
.. code-block:: bash
python3 -m venv myenv
This will create the *myenv* directory if it doesn’t exist, and also create
directories inside it containing a copy of the Python interpreter, the standard
library, and various supporting files.
Once you’ve created a virtual environment, you may activate it.
On Windows, run:
.. code-block:: bash
myenv\\Scripts\\activate.bat
On Unix or MacOS, run:
.. code-block:: bash
source myenv/bin/activate
You can install, upgrade, and remove packages using a program called *pip* within
your virtual environment (see `Installing with pip`_).
.. code-block:: bash
pip install silx[full]
Installing from source
----------------------
Building *silx* from the source requires some `Build dependencies`_ which may be
installed using:
.. code-block:: bash
pip install -r https://github.com/silx-kit/silx/raw/master/requirements-dev.txt
Building from source
++++++++++++++++++++
Source package of *silx* releases can be downloaded from
`the pypi project page `_.
After downloading the `silx-x.y.z.tar.gz` archive, extract its content::
tar xzvf silx-x.y.z.tar.gz
Alternatively, you can get the latest source code from the master branch of the
`git repository `_: https://github.com/silx-kit/silx
You can now build and install *silx* from its sources:
.. code-block:: bash
cd silx-x.y.z
pip uninstall -y silx
pip install . [--user]
Known issues
............
There are specific issues related to MacOSX. If you get this error::
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 1335: ordinal not in range(128)
This is related to the two environment variables LC_ALL and LANG not being defined (or wrongly defined to UTF-8).
To set the environment variables, type on the command line:
.. code-block:: bash
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
Advanced build options
++++++++++++++++++++++
Advanced options can be set through the following environment variables:
.. list-table::
:widths: 1 4
:header-rows: 1
* - Environment variable
- Description
* - ``SILX_WITH_OPENMP``
- Whether or not to compile Cython code with OpenMP support (default: ``True`` except on macOS where it is ``False``)
* - ``SILX_FORCE_CYTHON``
- Whether or not to force re-generating the C/C++ source code from Cython files (default: ``False``).
* - ``SPECFILE_USE_GNU_SOURCE``
- Whether or not to use a cleaner locale independent implementation of :mod:`silx.io.specfile` by using `_GNU_SOURCE=1`
(default: ``False``; POSIX operating system only).
* - ``SILX_FULL_INSTALL_REQUIRES``
- Set it to put all dependencies as ``install_requires`` (For packaging purpose).
* - ``SILX_INSTALL_REQUIRES_STRIP``
- Comma-separated list of package names to remove from ``install_requires`` (For packaging purpose).
.. note:: Boolean options are passed as ``True`` or ``False``.
Package the build into a wheel and install it (this requires to install the `build `_ package):
.. code-block:: bash
python -m build --wheel
pip install dist/silx*.whl
To build the documentation, using `Sphinx `_:
.. code-block:: bash
pip install . # Make sure to install the same version as the source
sphinx-build doc/source/ build/html
.. note::
To re-generate the example script screenshots, build the documentation with the
environment variable ``DIRECTIVE_SNAPSHOT_QT`` set to ``True``.
Formatting
++++++++++
To format the code, use `black `_.
Testing
+++++++
To run the tests of an installed version of *silx*, run the following on the python interpreter:
.. code-block:: python
import silx.test
silx.test.run_tests()
To run the test suite of a development version, use the *run_tests.py* script at
the root of the source project.
.. code-block:: bash
python ./run_tests.py