Install

Install#

We recommend creating a virtual environment or, e.g., a conda environment then installing finchnmr with pip:

conda create -n finchnmr-env python=3.10
conda activate finchnmr-env
pip install finchnmr

You can also install from this GitHub repo source:

git clone git@github.com:mahynski/finchnmr.git
cd finchnmr
conda create -n finchnmr-env python=3.10
conda activate finchnmr-env
pip install .
python -m pytest # Optional unittests

To install this into a Jupyter kernel:

conda activate finchnmr-env
python -m ipykernel install --user --name finchnmr-kernel --display-name "finchnmr-kernel"