创Pycharm和Anaconda环境搭建,Tensorflow

Posted by Fangjuntao on 2020-01-23

我虚拟目录的是tensorflow1.4,实际上是装1.6

https://www.cnblogs.com/yuxuefeng/articles/9235431.html

【Tensorflow】Windows安装tensorflow错误原因查询、卸载tensorflow与重新安装:https://blog.csdn.net/StupidAutofan/article/details/79093920

要在TF 2.0中获得类似TF 1.x的行为,可以运行:

1
2
3

import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()

解决 No module named ‘tensorflow.examples.tutorials’:
https://blog.csdn.net/weixin_41663570/article/details/102512468

机器学习——TensorFlow库安装、使用中遇到的报错情况
https://zhuanlan.zhihu.com/p/88202059

#TensorFlow 版本修改 卸载及其安装中
https://blog.csdn.net/wipvip/article/details/82735603
pip install tensorflow==1.6.0(指定想安装的版本)

在jupyter notebook导入tensorflow出错:No module named tensorflow 解决办法:
https://www.cnblogs.com/sench/p/9541450.html