使用命令conda install -c conda-forge rpy2
安装python模块时出现报错:
UnavailableInvalidChannel: The channel is not accessible or is invalid.
channel name: None
channel url: http://cran.fhcrc.org
error code: 404
可以看出conda默认用http://cran.fhcrc.org
链接安装rpy2,但显然我想让conda用conda-forge
安装rpy2。
解决方法很简单,直接在.condarc
文件中注释掉http://cran.fhcrc.org
链接就行了。
如下所示:
报错:UnavailableInvalidChannel: The channel is not accessible or is invalid解决方法