python - ImportError: No module named caffe -


i trying run google research's deepdream code on mac running osx 10.9.5.
there few dependencies had install. using anaconda distribution of python , made sure have packages required.

the hardest thing install caffe. have atlas installed using fink. have compiled caffe , pycaffe. when ran 'make runtest' tests passed. ran 'make distribute'.

when run the notebook released google, following error:

--------------------------------------------------------------------------- importerror                               traceback (most recent call last) <ipython-input-1-8200bcb1df23> in <module>()       7 google.protobuf import text_format       8  ----> 9 import caffe      10       11 def showarray(a, fmt='jpeg'):  importerror: no module named caffe 

how can be? can try fix it?


Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -