Installation#
Latest release#
The ddeq Python library is hosted on Gitlab.com.
If you use pip, ddeq can be installed with:
$ pip install ddeq
To run the tutorials and examples, it is necessary to install Jupyter, for example, with:
$ pip install jupyterlab
We currently do not provide a conda package. However, pip can be used to install ddeq in a conda environment. On Windows, you might want to install dependencies that require C libraries before installing ddeq. In the current version, the only such dependency is pycurl, which can be installed with:
conda install pycurl
Development version#
The development version can be cloned from Gitlab.com using
git clone https://gitlab.com/empa503/remote-sensing/ddeq.git
To install ddeq, you can use pip. Installing ddeq editable (-e options) allows you to directly modify the cloned code.
cd ddeq
pip install -e .