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
When attempting to build using Conda (option 2), the MinkowskiEngine and Torchsparse built successfully but the installation got stuck at Minuet. Manually configuring the last steps showed that the error was because of a (seemingly) wrongly defined print statement.
print(getattr(nvidia.cublas.__path__, '_path')[0]) in line 17 of "gather_build_info.py" seems to be wrongly defined and should be print(nvidia.cublas._path_[0]) instead. I don't understand why a simple print statement would cause the entire installation to fail, but changing this line allowed it to finally build for me :)
Kind regards,
Erin
The text was updated successfully, but these errors were encountered:
When attempting to build using Conda (option 2), the MinkowskiEngine and Torchsparse built successfully but the installation got stuck at Minuet. Manually configuring the last steps showed that the error was because of a (seemingly) wrongly defined print statement.
print(getattr(nvidia.cublas.__path__, '_path')[0])
in line 17 of "gather_build_info.py" seems to be wrongly defined and should beprint(nvidia.cublas._path_[0])
instead. I don't understand why a simple print statement would cause the entire installation to fail, but changing this line allowed it to finally build for me :)Kind regards,
Erin
The text was updated successfully, but these errors were encountered: