安裝anaconda和tensorflow(windows)

Anaconda安裝時勾選All User和啓用環境變量
可切換爲清華鏡像
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 --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --set show_channel_urls yespython

anaconda-navigator沒法打開的解決辦法
conda update anaconda-navigator
anaconda-navigator --reset
conda update anaconda-client
conda update -f anaconda-client測試

 

打開Anaconda-Navigator->Environments->base(root)修改python版本到3.6.8
python3.7目前對tensorflow2.0支持很差url

 

在Anaconda裏建立名爲tensorflow的環境
conda create -n tensorflow python=3.6.8ip

進入tensorflow環境
activate tensorflowcmd

查看Anaconda裏的環境
conda info --envspip


在cmd裏先執行如下兩行
easy_install pip
pip install--upgrade pip
回到Anaconda Prompt
pip install tensorflow或
pip install --upgrade --ignore-installed tensorflow
若是報錯超時,延長超時時間
pip install --upgrade --ignore-installed tensorflow --default-timeout=100import

安裝完成後,能夠對其進行測試,在終端輸入
import tensorflow as tf
引用tensorflow包,若是沒有報錯,則安裝成功,不然就有問題。變量

相關文章
相關標籤/搜索