Need help on windows install. thanks #1179
-
Installed cadquery by: curl -L -o miniforge.exe https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Windows-x86_64.exe Installed editor by unpacking zip. Now how to let the editor know about cadquery under windows? Here the cmd log: C:\Users\mathi\Downloads\CQ-editor-Windows>curl -L -o miniforge.exe https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Windows-x86_64.exe C:\Users\mathi\Downloads\CQ-editor-Windows>start /wait "" miniforge.exe /InstallationType=JustMe /RegisterPython=0 /NoRegistry=1 /NoScripts=0 /S /D=C:\Users\mathi\Miniforge3 C:\Users\mathi\Downloads\CQ-editor-Windows>cmd /K ""C:\Users\mathi/Miniforge3/Scripts/activate.bat" "C:\Users\mathi/Miniforge3"" (base) C:\Users\mathi\Downloads\CQ-editor-Windows> |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Your command prompt shows The steps are listed here for cadquery: https://github.com/CadQuery/cadquery#cadquery-installation-via-conda
Now cadquery is installed to a conda env named "cadquery". You should see Now install CQ-editor:
You can then launch cq-editor from the command prompt.
You can install both cadquery and CQ-editor with conda. I'd suggest to ignore the zip install since you have already installed conda. |
Beta Was this translation helpful? Give feedback.
Your command prompt shows
(base)
. This indicates you have conda installed and the base environment is active. Next, install both cadquery and cq-editor to a new conda environment.The steps are listed here for cadquery: https://github.com/CadQuery/cadquery#cadquery-installation-via-conda
Now cadquery is installed to a conda env named "cadquery". You should see
(cadquery)
in the command prompt now instead of base. At this …