-
Notifications
You must be signed in to change notification settings - Fork 35
Description
Hello, I have pythonocc-core installed in an anaconda environment and it is a pleasure to use (though with a very steep learning curve as I had never manipulated CAD files/drawing before and am few months old in python).
conda create -n pythonocc -c pythonocc -c dlr-sc pythonocc-core==0.17.2 python=3
In my activated pythonocc environment
source activate pythonocc
I've cloned pythonocc-utils, navigated to its root directory and:
pip install ./pythonocc-utils
I can verify that OCCutils is correctly in my current conda environment:
conda list
does show me this line
OCCUtils-0.1 dev <pip>
But in a python console,
>>> import OCCUtils
returns
File "<stdin>", line 1, in <module>
File "~/Python/DataVisualization/CADRelated/pythonocc-utils-master/OCCUtils/__init__.py", line 1, in <module>
from Common import get_boundingbox
ImportError: No module named 'Common'
same if I try import Common.
So I've uninstalled OCCutils
pip uninstall OCCutils
and tried
python setup.py install
but with the same outcome (both installation methods seem to be equivalent).
It's much more likely that I'm not correctly installing the module rather than an issue with the module itself, but could you please help or comment on my issue?