endernewton / tf-faster-rcnn

Tensorflow Faster RCNN for Object Detection
https://arxiv.org/pdf/1702.02138.pdf
MIT License
3.65k stars 1.57k forks source link

OSError: The CUDA lib64 path could not be located in /usr/lib64 #495

Open code-wd opened 4 years ago

code-wd commented 4 years ago

when I build the cython, I open the "bin" file, and when I input "make clean" and "make",i this error occur

code-wd commented 4 years ago

when I build the cython, I open the "bin" file, and when I input "make clean" and "make",i this error occur

I solve the problem by this way: open bin/setup.py change: cudaconfig = {'home':home, 'nvcc':nvcc, 'include': pjoin(home, 'include'), 'lib64': pjoin(home, 'lib64')} To: cudaconfig = {'home':home, 'nvcc':nvcc, 'include': pjoin(home, 'include'), 'lib64': pjoin(home, 'lib')}

zarif98sjs commented 1 year ago

^ this worked for me too