python - A ImportError when I install pycaffe without MKL -


i'm doing project, using intelcaffe. when run python code :

import sys  caffe_root = '/path/to/caffe/' sys.path.insert(0, caffe_root + 'python') import caffe caffe.set_mode_cpu() 

i following error:

file "caffemodel.py", line 6, in <module>     import caffe   file "../../caffe/python/caffe/__init__.py", line 37, in <module>     .pycaffe import net, sgdsolver, nesterovsolver, adagradsolver, rmspropsolver, adadeltasolver, adamsolver   file "../../caffe/python/caffe/pycaffe.py", line 49, in <module>     ._caffe import net, sgdsolver, nesterovsolver, adagradsolver, \ importerror: libmkldnn.so: cannot open shared object file: no such file or directory 

i want know how solve . hope me . thank you!


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -