initialization of _caffe raised unreported exception


initialization of _caffe raised unreported exception


RuntimeError: module compiled against API version 0xc but this version of numpy is 0xa
Traceback (most recent call last):
  File "/home/sbd/project/pva-faster-rcnn/caffe-fast-rcnn/python/classify.py", line 14, in
    import caffe
  File "/home/sbd/project/pva-faster-rcnn/caffe-fast-rcnn/python/caffe/__init__.py", line 1, in
    from .pycaffe import Net, SGDSolver, NesterovSolver, AdaGradSolver, RMSPropSolver, AdaDeltaSolver, AdamSolver, NCCL, Timer
  File "/home/sbd/project/pva-faster-rcnn/caffe-fast-rcnn/python/caffe/pycaffe.py", line 13, in
    from ._caffe import Net, SGDSolver, NesterovSolver, AdaGradSolver, \

SystemError: initialization of _caffe raised unreported exception

这个指的是numpy包

0xc是1.14版本,1.13是0xb版本,0xa是1.12版本

module compiled against API version 0xc but this version of numpy is 0xb


你可能感兴趣的:(caffe)