EMToolKit is available on the Python Package Index (PyPI). It is strongly recommended to use a Python virtual environment:
Install and test in the shell:
python -m venv .venv
source .venv/bin/activate
pip install emtoolkit
emtest
You can also test within Python:
import EMToolKit.examples as ex
ex.example_dir()
ex.example_run()
For the latest development version, clone the repository from GitHub and install it:
git clone https://github.com/jeplowman/EMToolKit.git
pip install -e .