Dev install

An installation procedure for those who want to contribute to the development of IGS.

Use a "dev" install or "developer" install if you want to contribute to the development of RV2.

conda config --add channels conda-forge
conda create -n igs-dev python=3.7 python-planarity cython
conda activate igs-dev
cd path/to/local/compas-IGS
pip install -e .
python -m compas_igs.install --version 7.0

Create a dev environment

Use conda to create a development environment, for example "igs-dev", and install python-planarity, and cython.

conda config --add channels conda-forge
conda create -n igs-dev python=3.7 python-planarity cython

Install RV2 from a local repo

In the dev environment, use pip to install an editable, local version of RV2.

conda activate igs-dev
cd path/to/local/compas-IGS
pip install -e .
python -m compas_igs.install --version 7.0

Last updated