Tensorflow Syntaxerror With Python 3.5.2
I'm trying to install tensorflow to my Linux systems (Linuxmint) with Python 3.5 using pip installation with CPU support. After the installation is done; to validate my installatio
Solution 1:
After upgrading tensorflow
1.3.0 to 1.4.0 I encountered this error. to solve it, I check different steps :
sudo pip3 uninstall tensorflow-gpu
sudo pip3 uninstall protobuf
sudo pip3 install tensorflow-gpu==1.3.0
sudo pip3 install protobuf==3.3.0
but the error was not resolved. finally, I uninstalled pygoogle
sudo pip3 uninstall pygoogle
and it works! Hope it will work for you too.
Post a Comment for "Tensorflow Syntaxerror With Python 3.5.2"