-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After actual testing, the plugin can be run with Python 3.12. #6
Comments
so cool |
Another key point is that the dependency spconv-cu124 needs to be installed, not spconv-cu120 |
https://github.com/isl-org/Open3D/releases/download/main-devel/open3d-0.18.0+81201f9-cp312-cp312-win_amd64.whl - 404 Still having issues with |
All dependencies have been successfully installed, but there are still errors: RuntimeError: Ninja is required to load C++ extensions |
yes,must install 124.no 120(lastest version=126 |
Local environment: Windows platform, Python 3.12, Torch version 2.5.1+cu124
Just need to resolve some dependency issues. One problem I encountered during the process was related to open3d and utils3d. First, there are precompiled files for open3d available for Windows: https://github.com/isl-org/Open3D/releases/download/main-devel/open3d-0.18.0+81201f9-cp312-cp312-win_amd64.whl
Secondly, the error module could not find utils3d, which might be due to the existence of a file with the same name. The actual utils3d is the file from the project https://github.com/EasternJournalist/utils3d, not the precompiled file on pypi. If you use python -m pip install utils3d, it will install the wrong dependency. The correct approach is to locate the directory where python.exe is, open the terminal, and input python -m pip install git+https://github.com/EasternJournalist/utils3d.git#egg=utils3d.
The text was updated successfully, but these errors were encountered: