Caffe 的可视化 (一)准备 pycaffe 环境
进入 ${CAFFE_ROOT}/python,执行下面的命令:
sudo apt-get update
sudo apt-get install python-pip python-dev python-numpy
sudo apt-get install gfortran graphviz
sudo pip install -r ${CAFFE_ROOT}/python/requirements.txt
sudo pip install pydot
install 过程中可能遇到的问题:
1. 下载包时老是遇到超时的问题
解决办法:
去网站 PipMirror https://www.pypi-mirrors.org/ 找一个国内处在active 的镜像,比如 pypi.tuna.tsinghua.edu.cn
然后执行下面的命令
sudo pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -r ${CAFFE_ROOT}/python/requirements.txt
2. 在安装 ipython 时遇到了版本不兼容的问题
提示 最新版本的 ipyhon 6.0 在 python 3.3 以下的版本中不支持
IPython 6.0+ does not support Python 2.6, 2.7, 3.0, 3.1, or 3.2.
When using Python 2.7, please install IPython 5.x LTS Long Term Support version.
Beginning with IPython 6.0, Python 3.3 and above is required.
解决办法:
修改 ${CAFFE_ROOT}/python/erquirements.txt 文件
将 ipython>=3.0.0 这一行修改为 ipython==5.3.0
然后再执行 sudo pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -r ${CAFFE_ROOT}/python/requirements.txt
也可以单独安装 ipython
sudo pip install ipython -i https://pypi.tuna.tsinghua.edu.cn/simple ipython==5.3.0