Getting Started
compas_skeleton
Topologically generating mesh from a set of lines and allowing interactive editing.
install requirement
Anaconda/conda and COMPAS >= 0.15.5 is required.
Set up a dedicated
conda
environment.On Windows.
conda create -n yourenv python=3.7
On Mac, also install Python as a framework (add
python.app
).conda create -n yourenv python=3.7 python.app
Activate the environment
conda activate yourenv
Install COMPAS.
navigate to the root of the
compas
repo, and dopip install -e .
more about installing compas: COMPAS
Install Skeleton.
navigate to the root of the
compas_skeleton
repo, and dopip install -e .
To verify, open an interactive Python prompt and import the installed packages.
>>> import compas >>> import compas_skeleton >>> exit()
Install packages for Rhino.
From the root of
compas_skeleton
, dopython -m compas_rhino.install -p compas compas_skeleton