环境:
python3.5.3+pycharm2018.2EAP
问题描述:
Pycharm编译报错
ImportError: No module named tensorflow
解决方法:
tensorflow安装不正确,需卸载重装,
cmd脚本输入:pip uninstall tensorflow
同时最好把附带的一些库也卸了(tensorboard、tensorflow- estimator之类与tensorflow相关的库)
同样用pip uninstall xx的代码
这边注意一个问题:
安装的tensorflow版本要与python版本匹配,这边参考:
https://blog.csdn.net/wanzhen4330/article/details/81660277
对应python3.5.3,我安装了tensorflow1.5.0,注意别装到tensorflow2.0.0版本去了,不然会报错:
could not find a version that satisfies the requrement
安装完成后,编译通过。
码字不易,如果您觉得有帮助,麻烦点个赞再走呗~