从零开始Win10搭建TensorFlow开发环境

1.下载并安装Anaconda

到官网下载Anaconda最新版本:https://www.anaconda.com/distribution/ ,选择对应版本进行下载。

从零开始Win10搭建TensorFlow开发环境_第1张图片

然后进行安装。注意安装anaconda时一定要把环境变量加入windows环境中。

2.设置Anaconda源

在Shall下运行默认环境,执行以下代码,设置清华镜像源:

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes

或打开Channs面板,直接添加两个镜像地址:

从零开始Win10搭建TensorFlow开发环境_第2张图片

https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/

然后点击Update channels。

 3.创建Python3.6环境

打开Environments选项卡,点击Create,输入名称,Python版本选择3.6,点击Create。

从零开始Win10搭建TensorFlow开发环境_第3张图片从零开始Win10搭建TensorFlow开发环境_第4张图片从零开始Win10搭建TensorFlow开发环境_第5张图片

4.安装TensorFlow

从零开始Win10搭建TensorFlow开发环境_第6张图片    从零开始Win10搭建TensorFlow开发环境_第7张图片

搜索tensorflow,选择第一个,之后点击Apply。

从零开始Win10搭建TensorFlow开发环境_第8张图片

再次点击Apply,Anaconda会自动进行安装。

5.安装jupyter notebook

点击Home选项卡,安装jupyter notebook。

从零开始Win10搭建TensorFlow开发环境_第9张图片

使用jupyter notebook环境运行。

从零开始Win10搭建TensorFlow开发环境_第10张图片

现在可以调用TensorFlow进行深度学习了!

从零开始Win10搭建TensorFlow开发环境_第11张图片

你可能感兴趣的:(从零开始Win10搭建TensorFlow开发环境)