ubuntu14.04 theano nvcc compiler not found on $PATH

安装好theano后配置gpu出现如下问题:

nvcc compiler not found on $PATH. Check your nvcc installation and try again

ubuntu14.04 theano nvcc compiler not found on $PATH_第1张图片


解决方法:配置主目录下~/.theanorc 内容如下:

[global]
device=gpu
floatX=float32
root=/usr/local/cuda-7.5
[nvcc]
fastmath = True
[blas]
ldflags = -lopenblas
[cuda]
root = /usr/local/cuda-7.5

ubuntu14.04 theano nvcc compiler not found on $PATH_第2张图片

即可解决问题 具体路径版本 参考自己的版本路径来。

安装过程可参考:http://blog.csdn.net/h272377502/article/details/51096022 






你可能感兴趣的:(theano,deeplearning,ubuntu,cuda,nvcc,path)