OSError:CUDA lib64路径无法位于/ usr / lib64中

时间:2016-08-23 19:03:33

标签: python ubuntu path gpu

我该如何解决这个问题?

(cv) jalal@klein:~/computer_vision/py-faster-rcnn/lib$ make
python setup.py build_ext --inplace
Traceback (most recent call last):
  File "setup.py", line 58, in <module>
    CUDA = locate_cuda()
  File "setup.py", line 55, in locate_cuda
    raise EnvironmentError('The CUDA %s path could not be located in %s' % (k, v))
OSError: The CUDA lib64 path could not be located in /usr/lib64
Makefile:2: recipe for target 'all' failed
make: *** [all] Error 1

我正在使用这个: https://github.com/rbgirshick/py-faster-rcnn

3 个答案:

答案 0 :(得分:13)

对于那些可能会使用这个流行软件(对于Cuda~5)的人,使用以下更改解决了这个问题:

jQuery('select[id$="-points"]').change(function() { var value = jQuery(this).val(), arr = ['cat', 'dog', 'fish', 'bird']; criteria = jQuery(this).attr('id'); criteria = criteria.split('foo-')[1].split('-baz')[0]; // get the value you want using split() function bar = jQuery('#foo-'+criteria+'-bar').val(); // do other stuff... });

中的

变化:

~/computer_vision/py-faster-rcnn/lib/setup.py

为:

cudaconfig = {'home':home, 'nvcc':nvcc,
              'include': pjoin(home, 'include'),
              'lib64': pjoin(home, 'lib64')}

如果您使用的是Cuda7.5,则可能需要将其保留为lib64,否则可能会出错。

答案 1 :(得分:2)

如果未设置CUDAHOME,也可能出现此错误。尝试:

$ export CUDAHOME=/usr/local/cuda-8.0

答案 2 :(得分:0)

对于Ubuntu 17.04

将/ home文件夹中的.bashrc文件中的CUDAHOME设置为,

export CUDAHOME=/usr/lib/nvidia-cuda-toolkit/

然后执行source ~/.bashrc

请记住打开一个新的终端,以便能够使用新的环境变量。

更改setup.py文件
cudaconfig = {'home':home, 'nvcc':nvcc,
                  'include': pjoin(home, 'include'),
                  'lib64': pjoin(home, 'lib64')}

cudaconfig = {'home':home, 'nvcc':nvcc,
               'include': '/usr/include',
               'lib64': '/usr/lib/x86_64-linux-gnu'}

还需要安装g++5,因为nvcc不支持g++6

sudo apt install g++-5