版本
Win10系统,Anaconda3,Python3.8.5,Tensorflow2.4.0,PyCharm2020.3
一、安装Anaconda
从官方网站
https://www.anaconda.com/distribution/
下载并安装Anaconda (参考文章
https://www.pythonf.cn/read/10996
)
二、安装Tensorflow
在创建完conda虚拟环境并打开环境之后,用pip下载安装Tensorflow:
1. 从官方下载:pip install tensorflow 或 pip install –upgrade –ignore-installed tensorflow (或选择所需版本pip install tensorflow==2.0.0)
2. 从国内各种镜像源下载:pip install –upgrade –ignore-installed -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow
3. 解决由于网速不稳定下载过慢超出默认事件的问题(socket.timeout:The read operation timed out):pip –default-timeout=1000 install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow
安装完成后进入python测试安装是否成功:
import tensorflow as tf
print(tf.__version__)
三、配置PyCharm
1. 下载PyCharm
https://www.jetbrains.com/pycharm/download/
社区版即可
2. 安装PyCharm,下面全部选择
3. 安装完成后,打开PyCharm新建项目,选择Previously configured interpreter来使用我们在Anaconda里创建的conda环境
选择环境时,虚拟环境是对此项目单独配置的;System Interpreter则是针对整个Pycharm环境;这里我们选择之前创建的conda环境
4. 同样测试在PyCharm中是否能成功调用tensorflow
import tensorflow as tf
print(tf.__version__)
成功!