Manual installation

Use this installation guide if you want to add COMPAS TIMBER to an existing virutual environment and/or for development purposes.

  1. (Optional) Using conda, create a new virtual environment (replace <myenvname> with your desired name), and activate it:

    conda create -n <myenvname> python=3.9
    conda activate <myenvname>
    
  2. Install development dependencies and COMPAS TIMBER:

    using pip:

    pip install compas@git+https://github.com/compas-dev/compas@main
    pip install compas_timber
    

    or

    using conda:

    conda install compas_timber
    pip install compas@git+https://github.com/compas-dev/compas@main
    

    Note

    If you don’t have conda-forge yet, add it first with:

    conda config --env --add channels conda-forge