tf-faster-rcnn icon indicating copy to clipboard operation
tf-faster-rcnn copied to clipboard

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

Open code-wd opened this issue 4 years ago • 2 comments

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

code-wd avatar Jan 16 '20 10:01 code-wd

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')}

code-wd avatar Jan 16 '20 10:01 code-wd

^ this worked for me too

zarif98sjs avatar Nov 23 '22 13:11 zarif98sjs