Installation¶
The easiest way to install pyeee is via pip:
pip install pyeee
Manual install¶
The latest version of pyeee can be installed from source:
git clone https://github.com/mcuntz/pyeee.git
cd pyeee
pip install .
Local install¶
Users without proper privileges can append the –user flag to
pip either while installing from the Python Package Index (PyPI):
pip install pyeee --user
or from the top pyeee directory:
git clone https://github.com/mcuntz/pyeee.git
cd pyeee
pip install . --user
If pip is not available, then setup.py can still be used:
python setup.py install --user
When using setup.py locally, it might be that one needs to append –prefix= to the command:
python setup.py install --user --prefix=
Dependencies¶
pyeee uses the packages numpy, scipy, schwimmbad,
pyjams. They are all available in PyPI and pip should install them
automatically. Installations via setup.py might need to install the three
dependencies first.