caffe搭建--缺少 skimage-缺少 google.protobuf.internal.-caffe搭建--ipython--ubuntu16.04+ caffe+ ipython

mkdir build && cd build

cmake ..

make pycaffe -j4

sudo vim /etc/profile---- export PYTHONPATH=/home/XXX/wsCaffe/caffe/build/install/python:PYTHONPATH

source /etc/profile

ipython

import caffe

错误1:

缺少 skimage

sudo apt-get install python-skimage

ipython

import caffe

错误2:

缺少 google.protobuf.internal.

sudo apt-get install python-protobuf

ipython

import caffe

OK!