Spyder配置TensorFlow及Keras流程记录

一、下载Anaconda

清华镜像找最新版本https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/

二、配置TensorFlow

参考链接:https://www.cnblogs.com/wxyao/p/12677089.html

参考以上文章中的2020年8月第二次安装。
但是在安装TensorFlow前先更换为清华的源,即

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

之后再pip install tensorflow
其他步骤不变。

三、Spyder调用TensorFlow、Keras

在Anaconda Navigator—>Environment—>tensorflow—>not installed找到Spyder下载,到此就成功了。

如果成功安装TensorFlow后,Spyder无法import可以参考:
https://blog.csdn.net/weixin_44915167/article/details/89322271

最后直接在Spyder中运行pip install keras

你可能感兴趣的:(笔记,tensorflow,python,机器学习)