我正在尝试使用带有CPU支持的pip安装,使用Python 3.5在我的Linux系统(Linuxmint)上安装tensorflow。安装完成后;验证我的安装我尝试运行以下脚本
python3
let options = new RequestOptions({ headers: headers, withCredentials: true });
结果如下:
>import tensorflow as tf
有人可以帮忙讨论这个话题吗?
答案 0 :(得分:1)
将tensorflow
1.3.0升级到1.4.0后,我遇到了此错误。要解决它,我检查不同的步骤:
sudo pip3 uninstall tensorflow-gpu
sudo pip3 uninstall protobuf
sudo pip3 install tensorflow-gpu==1.3.0
sudo pip3 install protobuf==3.3.0
但错误未解决。最后,我卸载了pygoogle
sudo pip3 uninstall pygoogle
它有效!希望它也适合你。