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

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/AinUser/article/details/85470342

我这里使用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

猜你喜欢

转载自blog.csdn.net/AinUser/article/details/85470342