Development Environment

To create a development environment, you have to make sure that the requirements from Installation are installed on your system.

First clone the repository to your system and change your current working directory inside the downloaded folder.

git clone https://github.com/PyRope-E-Assessment/pyrope.git
cd pyrope

Then create and activate a virtual environment.

python -m venv venv
venv\Scripts\activate

Finally install PyRope’s development dependencies and make the package editable.

python -m pip install pyrope[dev]@git+https://github.com/PyRope-E-Assessment/pyrope.git
python -m pip install --no-deps -e .

Documentation

To generate this documentation by yourself, you need to run Sphinx which is part of PyRope’s development dependencies.

sphinx-autobuild docs docs/build