在 python 中导入新的 caffe 版本

Importing a new caffe version in python

我安装了两个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框架?

我终于成功了:

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

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