2017-2019年计算机视觉顶会文章收录 AAAI2017-2019 CVPR2017-2019 ECCV2018 ICCV2017-2019 ICLR2017-2019 NIPS2017-2019
参考(点击链接)
window conda命令窗口出现UnavailableInvalidChannel: The channel is not accessible or is invalid。。。404。。。错误提示的解决方法
我是19年4月先安装的tensorflow cpu,然后今天想着把GPU版本的也装上,结果conda install tensorflow-gpu后,出错提示UnavailableInvalidChannel: The channel is not accessible or is invalid。。。404。。。
从https://blog.youkuaiyun.com/aaa958099161/article/details/90271642的博客中得知原因,该博客的评论区的一位大哥给了优秀找到解决方法,参考他的博客https://blog.youkuaiyun.com/qq_42859864/article/details/90340164#comments。
解决方法:在conda里一行行键入以下命令即可:
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://repo.continuum.io/pkgs/free/
conda config --add channels https://repo.continuum.io/pkgs/main/
conda config --set show_channel_urls yes
参考:https://blog.youkuaiyun.com/Msjiangmei/article/details/90610153