Skip to content

Instantly share code, notes, and snippets.

@jclosure
Last active March 14, 2025 20:50
Show Gist options
  • Save jclosure/b9b9c8dbf4ecf0b7dfd41005b43d7256 to your computer and use it in GitHub Desktop.
Save jclosure/b9b9c8dbf4ecf0b7dfd41005b43d7256 to your computer and use it in GitHub Desktop.
Install miniconda MacOS and use Open3D
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