HKUST-Aerial-Robotics / Stereo-RCNN

Code for 'Stereo R-CNN based 3D Object Detection for Autonomous Driving' (CVPR 2019)
MIT License
690 stars 177 forks source link

ImportError: libcudart.so.8.0: cannot open shared object file: No such file or directory #5

Closed a785448726 closed 5 years ago

a785448726 commented 5 years ago

How to solve this “ImportError: libcudart.so.8.0: cannot open shared object file: No such file or directory“?

PeiliangLi commented 5 years ago

Which version of the CUDA have you installed? You need to specify the corresponding cuda version when installing pytorch: conda install pytorch=0.3.0 your_CUDA_version(cuda80/cuda90, etc) -c pytorch

a785448726 commented 5 years ago

The version I installed was cuda80

PeiliangLi commented 5 years ago

run conda install cudatoolkit=8.0 will solve this issue

a785448726 commented 5 years ago

Thank you very much,the previous problem was solved. But now there is a new problem: "ImportError: No module named cython_bbox". I see you've answered this question before, and I make an error when I run make.sh.

PeiliangLi commented 5 years ago

Hi, I found the issue just now. The simplest way is removing this line: model.utils.cython_bbox import bbox_overlaps in the imdb.py