第一个问题
开始在cmd中python -m pip install tensorflow安装的时候下载从未成功过,最刺激的一次是已经装到300+MB了(整整下了三天!!!)。
然后告诉我要用Anaconda安装。
解决方法:去Anaconda官网下载。
步骤参考:
https://www.cnblogs.com/ming-4/p/11516728.html
第二个问题
在安装的之后出现
You are using pip version 9.0.1, however version 21.0.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
在上述博客中给出解决方法,直接输入即可。
第三个问题
在按照上述博客测试的时候出现报错:
AttributeError: module 'tensorflow' has no attribute 'Session'
解决方法见博客:https://www.cnblogs.com/123456www/p/12584427.html
如上测试代码改成:
import tensorflow as tf
tf.compat.v1.disable_eager_execution()
sess = tf.compat.v1.Session()
a = tf.constant(10)
b= tf.constant(12)
sess.run(a+b)
第四个问题
在visual studio里还是报错:
解决方法参考博客:https://blog.csdn.net/weixin_44284194/article/details/110235990
不过问题变成了我之前安装的matplotlib又得重来一遍
在Anaconda中(指刚刚到窗口Anaconda Prompt)先exit()退出刚刚到Python,然后粘贴python -m pip install matplotlib
第五个问题
新的报错新的快乐
据说其根本原因是2.0版本已经不支持了
见鬼!为啥更新版本把功能丢了
解决方法:https://blog.csdn.net/putyourheart/article/details/102463731
现在可以运行了
好耶!