我想在 Jupyter 笔记本中安装 R 的bioconductor rain 包。
我无法按照上面链接的网站上给出的说明在 Jupyter 笔记本中安装此软件包 - 在 R Jupiter 笔记本中:
source("https://bioconductor.org/biocLite.R")
biocLite("rain")
我收到以下错误:
Warning message:
In install.packages(pkgs = doing, lib = lib, ...): installation of package ‘gmp’ had non-zero exit statusWarning message:
In install.packages(pkgs = doing, lib = lib, ...): installation of package ‘rain’ had non-zero exit status
我能够使用以下命令行在Jupyter ( DESeq2 ) 中安装不同的生物导体包:
conda install bioconductor-deseq2
但是这种方法对rain包不起作用,因为与deseq2不同,rain不在anaconda cloud上。
是否可以在 Jupyter 的蟒蛇云(如雨包)上安装生物导体包,如果可以,如何安装?
谢谢!