Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 692 Bytes

INSTALL.md

File metadata and controls

29 lines (23 loc) · 692 Bytes

Installation Guide for EMToolKit

PyPI Installation

EMToolKit is available on the Python Package Index (PyPI). It is strongly recommended to use a Python virtual environment:

Installation Steps

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()

GitHub Installation

For the latest development version, clone the repository from GitHub and install it:

git clone https://github.com/jeplowman/EMToolKit.git
pip install -e .