You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.
install the open3d following the official instruction with ‘conda install -c open3d-admin open3d’, however i meet some errors when run the code like 'module 'open3d' has no attribute 'read_point_cloud''.
other ways to install it has been tried and it still doesn't work.
my python version is 3.6.5
The text was updated successfully, but these errors were encountered:
This is because the code was written for an older version of Open3D. In newer versions, read_point_cloud is an attribute of open3d.io, instead of open3d. Use open3d.io.read_point_cloud() instead. You might have to change other parts of the code too since there were quite a few changes in the newer version of Open3D.
install the open3d following the official instruction with ‘conda install -c open3d-admin open3d’, however i meet some errors when run the code like 'module 'open3d' has no attribute 'read_point_cloud''.
other ways to install it has been tried and it still doesn't work.
my python version is 3.6.5
The text was updated successfully, but these errors were encountered: