Caffe学习笔记(1)--在spyder中 import caffe

在配置好caffe环境之后无法在anaconda的spyder中直接导入caffe的库,需现先将caffe的路径导入进去。操作如下:

import sys
caffe_home = '/home/kelly/DL/caffe-master/'
sys.path.insert(0, caffe_home + 'python')
import caffe

你可能感兴趣的:(caffe学习笔记)