ContributionΒΆ
All packages are installed with conda
or pip
and listed in
environment.yml
and requirements.txt
, respectively, and can be
installed with the following commands:
# with conda
conda env create --file environment.yml
conda activate ddpw
# with pip
pip install -r requirements.txt
An existing environment can be update with conda env update
:
conda env update --file environment.yml
This documentation is written in Sphinx with Furo; the dependencies can be installed with the following commands:
# with conda
> conda env create --file environment.yml # root folder
> conda activate ddpw
> pip install -r requirements.txt
The Make
file compiles and builds the documentation into HTML and the
following commands can be used to do so:
> cd docs
> make clean html