I am trying to run Google\'s deep dream. For some odd reason I keep getting
ImportError: No module named google.protobuf
after t
I had this problem to when I had a google.py file in my project files. It is quite easy to reproduce. main.py: import tensorflow as tf google.py: print("Protobuf error due to google.py")
import tensorflow as tf
print("Protobuf error due to google.py")
Not sure if this is a bug and where to report it.