1 安裝環境 Win 10、Anaconda 3.6
2 安裝步驟:
(1)在 anaconda 終端 Anaconda Prompt 中輸入:conda create -n tensorflow python=3.5
【設置清華鏡像】在終端中輸入:conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
(2)安裝完成后,輸入:activate tensorflow 激活環境
(3)安裝 CPU 版本的 tensorflow 輸入:pip install tensorflow
【使用 pip 清華鏡像方式安裝 python 包】安裝:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple requests
升級:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade requests
安裝 tensorflow:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ https://mirrors.tuna.tsinghua.edu.cn/tensorflow/windows/cpu/tensorflow-1.1.0-cp35-cp35m-win_amd64.whl
清華 tensorflow 鏡像網鏈接:https://mirrors.tuna.tsinghua.edu.cn/tensorflow/
(4)在終端中測試:進入 python3.5,輸入:import tensorflow as tf 無報錯,即成功
在終端中exit()退出python,輸入 deactivate tensorflow 可以退回到 python3.6 版本
(5)在 spyder 中使用 tensorflow:進入 anaconda navigator,點擊左側的 home,選擇 application on tensorflow,然后安裝界面中的 spyder
