Installing#

The latest release, including binary packages for Windows, macOS and Linux, is available for download from PyPI. You can also find source releases at the Releases Page.

You can install PyWavelets with:

pip install PyWavelets

Users of the Anaconda Python distribution may wish to obtain pre-built Windows, Intel Linux or macOS / OSX binaries from the main or conda-forge channel:

conda install pywavelets

Several Linux distributions have their own packages for PyWavelets, but these tend to be moderately out of date. Query your Linux package manager tool for python-pywavelets, python-wavelets, python-pywt or a similar package name.

Building from source#

The most recent development version can be found on GitHub at PyWavelets/pywt.

The latest release, is available for download from PyPI or on the Releases Page.

If you want or need to install from source, you will need a working C compiler (any common one will work) installed on your system. Navigate to the PyWavelets source code directory (containing pyproject.toml.py) and type:

pip install .

For the requirements needed to build from source are (Python, NumPy and Cython minimum versions in particular), see pyproject.toml.

To run all the tests for PyWavelets, you will also need to install the Matplotlib package. If SciPy is available, FFT-based continuous wavelet transforms will use the FFT implementation from SciPy instead of NumPy.

See also

The Development guide section contains more information on building and installing from source code.