Installation

Requirements

sandlersteam requires:

  • Python 3.7 or later

  • NumPy

  • SciPy

  • Pint

Install from PyPI

The easiest way to install sandlersteam is using pip:

pip install sandlersteam

This will automatically install all required dependencies.

Install from Source

To install the latest development version from GitHub:

git clone https://github.com/cameronabrams/sandlersteam.git
cd sandlersteam
pip install -e .

This installs the package in “editable” mode, which is useful for development.

Verify Installation

To verify that sandlersteam is installed correctly, run:

sandlersteam --help

You should see the help message for the command-line interface.

Alternatively, from Python:

import sandlersteam
print(sandlersteam.__version__)

Updating

To update to the latest version:

pip install --upgrade sandlersteam

Uninstalling

To remove sandlersteam:

pip uninstall sandlersteam