0
点赞
收藏
分享

微信扫一扫

Use "conda info <package>" 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

 

举报

相关推荐

0 条评论