Last active
March 14, 2025 20:50
-
-
Save jclosure/b9b9c8dbf4ecf0b7dfd41005b43d7256 to your computer and use it in GitHub Desktop.
Install miniconda MacOS and use Open3D
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
brew install --cask miniconda | |
rehash | |
conda init zsh | |
conda config --set auto_activate_base false | |
# see that it created ~/.condarc with auto_activate_base: false | |
conda create --name open3d-ml-build python==3.10 | |
conda activate open3d-ml-build | |
conda install pytorch torchvision torchaudio -c pytorch | |
conda install -c open3d-admin | |
pip install open3d | |
python3 -c "import open3d" | |
# open VSCode open a notebook and change the kernel to open3d-ml-build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment