I followed the install instructions by doing pip install open3d and I installed pytorch as specified in the github. When i try importing it, it gives me this error (picture 1). Does this mean that open3d-ml is not in the pip install open3d? Also does this mean I have to make an open3d build myself?
Error:
Exception Traceback (most recent call last)
Cell In[1], line 1
----> 1 import open3d.ml.torch
File ~\anaconda3\envs\open3d-ml_test\lib\site-packages\open3d\ml\torch_init_.py:15
12 from open3d import _build_config
14 if not _build_config["Pytorch_VERSION"]:
---> 15 raise Exception('Open3D was not built with PyTorch support!')
16 _o3d_torch_version = _verp(_build_config["Pytorch_VERSION"])
17 # Check match with PyTorch version, any patch level is OK
Exception: Open3D was not built with PyTorch support!