This project can be installed by running:
# From Github
pip install git+https://github.com/Schoyen/quantum-systems.git
# From repo quantum-systems
pip install .To update the current version of quantum-systems run:
# From Github
pip install git+https://github.com/Schoyen/quantum-systems.git -U
# From repo quantum-systems
pip install . -UDuring development it is a good idea to create a conda environment such that all dependencies gets installed correctly. This is easiest done by executing:
conda env create -f environment.yml
source activate quantum-systemsOnce you are done, you can deactivate the environment by:
source deactivateIf the environment changes you can update the new changes by:
conda env update -f environment.yml