Installation#

Installing sampex is as simple as:

python3 -m pip install sampex

Configuration#

You can configure this package so it knows the top-level directory to search for (or save) the data to.

python3 -m sampex config

Developer Installation#

If you want to develop this package, run

git clone git@github.com:mshumko/sampex.git
cd sampex

Then one of these commands to install sampex (preferably into a virtual environment):

python3 -m pip install -e .

or

python3 -m pip install -r requirements.txt

and then follow the above configuration steps.