【Caffe安装】ImportError: No module named caffe 的解决方案

1, 在成功编译caffe的源码之后,可以在python环境中使用caffe。在Ubuntu环境下,打开python解释程序,输入import caffe时,可能会出现 ImportError: No module named caffe

>>>import caffe
   Traceback (most recent call last): 
   File "", line 1, in <module> 
   ImportError: No module named caffe

这种情况一般是没有把caffe中的和python相关的内容的路径添加到python的编译路径中。可以在shell 中输入以下命令:

sudo gedit /etc/profile

然后在最后添加路径:

export PYTHONPATH=/home/justin/caffe/python:$PYTHONPATH

之后再python下import caffe就会正常运行了。

2, 如果有其他问题,可以参考http://blog.csdn.net/liyaohhh/article/details/50876777

你可能感兴趣的:(机器学习算法笔记)