在python中导入新的caffe版本

时间:2019-06-06 14:05:56

标签: python caffe pycaffe

我已经安装了两个caffe版本,我想选择要在python项目中导入哪个版本

假设caffe安装在../install/caffe/python中,其修改版本安装在../ install / caffe_modif / python

在我的python代码中

import sys
sys.path.append('../install/caffe_modif/python')
import caffe
caffe.__file__ 

指向原始的caffe框架,而不是经过修改的框架。如何使它指向修改后的caffe框架?

1 个答案:

答案 0 :(得分:0)

我终于设法使其工作了:

sys.path.insert(0,'../install/caffe_modif/python') 

这将为应用程序插入正确的caffe路径