Tramac / awesome-semantic-segmentation-pytorch

Semantic Segmentation on PyTorch (include FCN, PSPNet, Deeplabv3, Deeplabv3+, DANet, DenseASPP, BiSeNet, EncNet, DUNet, ICNet, ENet, OCNet, CCNet, PSANet, CGNet, ESPNet, LEDNet, DFANet)
Apache License 2.0
2.85k stars 582 forks source link

ImportError:libcudart.so.9.0: cannot open shared object file :No such file or directory. #99

Open lr1234567 opened 4 years ago

lr1234567 commented 4 years ago

from core.nn import_C ImportError:libcudart.so.9.0: cannot open shared object file :No such file or directory. 请问这是什么错误?

pyradd commented 4 years ago

This basically means your cuda path was wrong. try setting cuda path manually before installing. Try export PATH=/usr/local/cuda-9.0/bin:$PATH before installing the requirements

lr1234567 commented 4 years ago

This basically means your cuda path was wrong. try setting cuda path manually before installing. Try export PATH=/usr/local/cuda-9.0/bin:$PATH before installing the requirements

你好,我运行了一下 export PATH=/usr/local/cuda-9.0/bin:$PATH 再运行仍然是那个问题,是不是我的cuda版本问题呀,cuda是10.0

IridescentJiang commented 3 years ago

This basically means your cuda path was wrong. try setting cuda path manually before installing. Try export PATH=/usr/local/cuda-9.0/bin:$PATH before installing the requirements

你好,我运行了一下 export PATH=/usr/local/cuda-9.0/bin:$PATH 再运行仍然是那个问题,是不是我的cuda版本问题呀,cuda是10.0

I encountered this problem and solve it by rebuilding. This project need to be build at the first, maybe you should clean the build folder and use "python setup.py build develop" to rebuild it.