I hadn't used Anaconda before, so I went with Miniconda (Python 3.8, Win 64 bit). That seems to work fine, and I followed the cq-editor install instructions (conda install -c cadquery -c conda-forge cq-editor=master). When I try to run cq-editor (from the Start menu icon), I just get a blank black cq-editor window. When I try to run from the anaconda shell, I get the following error trace:
(base) PS C:\Users\Me> cq-editor
Traceback (most recent call last):
File "C:\Users\Me\miniconda3\Scripts\CQ-editor-script.py", line 6, in <module>
from cq_editor.__main__ import main
File "C:\Users\Me\miniconda3\lib\site-packages\cq_editor\__main__.py", line 12, in <module>
from .main_window import MainWindow
File "C:\Users\Me\miniconda3\lib\site-packages\cq_editor\main_window.py", line 5, in <module>
import cadquery as cq
File "C:\Users\Me\miniconda3\lib\site-packages\cadquery\__init__.py", line 2, in <module>
from .occ_impl.geom import Plane, BoundBox, Vector, Matrix, Location
File "C:\Users\Me\miniconda3\lib\site-packages\cadquery\occ_impl\geom.py", line 5, in <module>
from OCP.gp import gp_Vec, gp_Ax1, gp_Ax3, gp_Pnt, gp_Dir, gp_Trsf, gp_GTrsf, gp, gp_XYZ
ImportError: DLL load failed while importing OCP: The specified module could not be found.
In an attempt to get past this, I also followed the cadquery install instructions (conda install -c conda-forge -c cadquery cadquery=master), as well as the OCP install instructions (conda install -c conda-forge -c cadquery ocp). I assumed the anaconda should get all the dependencies for the cq-editor install, but wanted to make sure. As far as I can tell, everything installed sucessfully.
I can't find anything on the web about this error, but would like to be able to try cq-editor. Any suggestions on what I am doing wrong?