https://www.continuum.io/downloads下载不同环境下的anaconda版本,有Windows、OSX、Linux:下载地址
这里主要说明在Linux环境下的安装过程:
点击上面地址完成下载;

1.将下载的文件拷贝到home/dragon下,在终端窗口输入下面命令:bash Anaconda3-4.0.0-Linux-x86_64.sh

2.安装过程中可以接受默认安装路径,或者选择选择一个用户可写入的安装位置,比如:anaconda2;
3.没有必要使用root用户安装anaconda。
跟着屏幕上显示的选项进行安装,
如果在安装的过程中你没有选择把anaconda这个文件添加到PATH环境变量中,你可以稍后将其添加到你的home文件中./bashrc中。添加的命令:

sudo vim ~/.bashrc#打开文件.bashrc
export PATH="/home/username/anaconda/bin:$PATH"#将该命令添加到文件的最后一行
source ~/.bashrc

关掉终端重启,就安装好了anaconda和自带的jupyter notebook

接下来,在import caffe时出现 No module named google.proto这个错误, 加入路径sys.path.append(‘/usr/lib/python2.7/dist-packages/’)即可

import sys
caffe_root = '/home/dragon/caffe/'  # this file should be run from {caffe_root}/examples (otherwise change this line)
sys.path.insert(0, caffe_root + 'python')
sys.path.append('/usr/lib/python2.7/dist-packages/')
import caffe

参考:
http://blog.csdn.net/duxu24/article/details/52353555

Logo

更多推荐