No module named google.protobuf

后端 未结 9 689
滥情空心
滥情空心 2020-12-09 08:17

I am trying to run Google\'s deep dream. For some odd reason I keep getting

ImportError: No module named google.protobuf

after t

9条回答
  •  庸人自扰
    2020-12-09 09:02

    In my case I

    1. downloaded the source code, compiled and installed:

      $ ./configure
      $ make
      $ make check
      $ sudo make install`
      
    2. for python I located its folder(python) under source code, and ran commands:

      $ python setup.py build
      $ python setup.py install'
      

    Not sure if this could help you..

提交回复
热议问题