Skip to content

Installing pysmo

Prerequisites

Pysmo requires a recent Python version and depends on a small number of third-party packages (e.g. NumPy, SciPy). It is tested against the latest three stable Python releases on Linux, MacOS, and Windows.

Pysmo is available from the Python Package Index and can be installed with pip:

$ python3 -m pip install pysmo
$ python3 -m pip install pysmo --pre
$ python3 -m pip install git+https://github.com/pysmo/pysmo

Tip

The stable release can be installed alongside the development version. See the development documentation for instructions.

Upgrading

Upgrades to pysmo are also performed with the pip command:

python3 -m pip install -U pysmo

Uninstalling

To remove pysmo from the system run:

python3 -m pip uninstall pysmo

Note

pip does not remove dependencies that were automatically installed. Run pip list to see what is installed, then remove any unwanted packages with pip uninstall.