我正在尝试在运行OSx 10.9.5的mac上运行Google Research's DeepDream code 我必须安装一些依赖项。我使用的是Anaconda的python发行版,我确保我拥有所需的所有软件包。
最困难的事情是安装Caffe。我用fink安装了ATLAS。然后我编译了caffe和pycaffe。当我运行'make runtest'时,所有测试都通过了。我也跑'make distribute'。
当我运行the notebook released from Google时,出现以下错误:
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-1-8200bcb1df23> in <module>()
7 from google.protobuf import text_format
8
----> 9 import caffe
10
11 def showarray(a, fmt='jpeg'):
ImportError: No module named caffe
这怎么可能?我可以尝试做些什么来修复它?