Compas installation on Rhino 8

Hello, I tried installing compas om Rhino 8 following the instructions provided using conda. When I run the command: python -m compas_rhino.install
I get the error message „ The default installation folder for rhino8 8.0 doesn’t exist.“
I tried using „-v 8“ because I have Rhino 8 and Rhino 7 installed. I searched the forum for a solution but I didn’t find any regarding to Rhino 8.

Desperately I also tried reinstalling Rhino 8 and installing everything from scratch. But always same error.

Hi Phil,

To use COMPAS in Rhino8 please have a look at the following installation guide from our documentation: Working in Rhino 8 (with CPython) — COMPAS

Using the # r notation at the top of your script files allows Rhino8 to install it directly from PyPi.

#! python3
# r: compas

import compas
from compas.datastructures import Mesh

mesh = ...

The -v8.0 flag of our installation script does not properly work and will be removed.

We are working on improving our support of Rhino8, specifically Grasshopper, and I’ll post updates as it advances.