1. 程式人生 > >Use "conda info " to see the dependencies for each package

Use "conda info " to see the dependencies for each package

我這裡使用conda install tensorflow失敗,出現上述問題

我這裡主要是更換conda映象資料來源

1.檢視當前映象資料來源列表

conda config --get channels

2.網路上面均有的清華映象源(使用方式)

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
3.還可以使用中科大(與第二步任選一)

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

4.之後在使用命令安裝

conda install tensorflow