When I try to do:
import Rhino.RhinoDoc
it works in the python 2 editor, but in the python 3 editor, I got the following error
ModuleNotFoundError: No module named 'Rhino.RhinoDoc'
When I try to do:
import Rhino.RhinoDoc
it works in the python 2 editor, but in the python 3 editor, I got the following error
ModuleNotFoundError: No module named 'Rhino.RhinoDoc'
Hi Danny,
This looks like a problem with the python 3 editor implementation.
As a workaround you can use the syntax
from Rhino import RhinoDoc
HTH
Jeremy
Thx, it works! Sorry for the late reply.
Hope this get fixed later.