Installation¶
Install¶
Create a virtual environment using your tool of choice (e.g.
virtualenv
orconda
) and install.Using Anaconda
conda config --add channels conda-forge conda config --set channel_priority strict conda create -n env_name python=3.8 compas_mrr conda activate env_name
Using virtualenv
virtualenv --python=python3.8 {{path/to/venv}} source {{path/to/venv}}/bin/activate pip install compas_mrr
Make package accessible in Rhino and Grasshopper
python -m compas_rhino.install
Update¶
To update the repository run:
# conda
conda update compas_mrr
# pip
pip install -U compas_mrr