sshaoshuai / Pointnet2.PyTorch

A faster implementation of PointNet++ based on PyTorch.
MIT License
470 stars 107 forks source link

ModuleNotFoundError: No module named 'pointnet2_cuda' #12

Closed BasserJason closed 4 years ago

BasserJason commented 4 years ago

Why does it happen? I can't find pointnet2_cuda

BasserJason commented 4 years ago

i got it. My setup.py didn't install correctly.

JianrongYan commented 1 year ago

i got it. My setup.py didn't install correctly. so how to solve it.

fzhiheng commented 1 year ago

so how to solve it. I met the same problem, have you solved it?

JianrongYan commented 1 year ago

so how to solve it. I met the same problem, have you solved it? you can try using pip install setuptools==58.2.0 to lower your setuptool version. Besides, ninja lib is necessary.

fzhiheng commented 1 year ago

you can try using pip install setuptools==58.2.0 to lower your setuptool version. Besides, ninja lib is necessary. It works! Thanks a lot!