Last active
September 30, 2023 16:58
-
-
Save michelv/d6ebd1a8ef32b16cf8c32181191e11ad to your computer and use it in GitHub Desktop.
install Cadquery and CQ-editor on ARM macOS (Mac M1, M2)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# type this in your Terminal/iTerm/whatever: | |
# get conda | |
brew install miniforge | |
conda init "$(basename "${SHELL}")" # as indicated by homebrew | |
# start a new shell or reload the current shell | |
# create an env for cadquery (name it however you want, I used cadquery-arm but you can name it Patrick if you want) | |
conda create -n cadquery-arm python=3.10 | |
conda activate cadquery-arm | |
# install cadquery and cq-editor | |
conda install -c cadquery -c conda-forge cadquery=master cq-editor=master | |
# launch cq-editor | |
conda activate cadquery-arm # except the first time since we're already using that env | |
cq-editor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment