Last active
September 25, 2023 01:18
-
-
Save bendavis78/6f7f6bc9c75e21094a54fc020cc054ee to your computer and use it in GitHub Desktop.
build123d installation on macos apple silicon m1
This file contains hidden or 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
# As of 9/24/2023 | |
# This requires conda, mamba, or micromamba | |
micromamba create -n code_cad python=3.10 -c conda-forge | |
micromamba -n code_cad install -c cadquery -c conda-forge cadquery=master | |
micromamba -n code_cad run pip install \ | |
'typing_extensions~=4.4.0' 'numpy~=1.24.1' 'svgpathtools~=1.5.1' \ | |
'anytree~=2.8.0' 'ezdxf~=1.0.0' 'numpy-stl~=3.0.0' 'ipython~=8.0.0' \ | |
'git+https://github.com/CadQuery/[email protected]#egg=OCP-stubs' \ | |
'git+https://github.com/jdegenstein/py-lib3mf#egg=py_lib3mf' | |
micromamba -n code_cad run pip install --no-deps git+https://github.com/gumyr/build123d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment