Installation¶
The package can be installed directly from the Python Package Index or GitHub. The version on GitHub might be more recent, as only stable versions are uploaded to the Python Package Index.
GitHub¶
The most recent version from GitHub can be installed like:
git clone https://github.com/schwemro/diag-eff.git
cd diag-eff
pip install -r requirements.txt
pip install -e .
Note¶
Depending on you OS, you might run into problems installing all requirements in a clean Python environment. These problems are usually caused by the scipy and numpy package, which might require to be compiled. Instead, We recommend to use an environment manager like anaconda. Then, the requirements can be installed like:
conda install numpy, scipy