Installation 如何在RStudio上安装rBLAST?

Installation 如何在RStudio上安装rBLAST?,installation,Installation,亲爱的大家好 我是R的新手。 我在windows上安装了R和R studio 3.3.4版,但无法在其上安装rBLAST和blastSeq软件包。我使用了以下两个命令: install.packages("rBLAST") 或 但两者都显示出以下erorr: Warning message: package ‘rBLAST’ is not available (for R version 3.4.3) 我在等你的答复 谢谢我的理解是,rBLAST软件包既不在CRAN中(解释您的install

亲爱的大家好 我是R的新手。 我在windows上安装了R和R studio 3.3.4版,但无法在其上安装rBLAST和blastSeq软件包。我使用了以下两个命令:

install.packages("rBLAST")

但两者都显示出以下erorr:

Warning message:
package ‘rBLAST’ is not available (for R version 3.4.3)
我在等你的答复
谢谢

我的理解是,rBLAST软件包既不在CRAN中(解释您的
install.packages(“rBLAST”)
命令不起作用的原因),也不在Bioconductor存储库中(解释
BioLite
安装不起作用的原因)

您仍然可以安装它。最简单的方法是直接从GitHub安装它。这需要安装
devtools
软件包

install.packages("devtools")
devtools::install_github("mhahsler/rBLAST")
另一种方法是克隆或下载存储库,然后自己构建

git clone https://github.com/mhahsler/rBLAST.git
R CMD build rBLAST
R CMD INSTALL <name of the resulting tarball>
git克隆https://github.com/mhahsler/rBLAST.git
R CMD build rBLAST
R CMD安装

我试过了,没用!。。“错误:无法从GitHub安装'rBLAST'(从警告转换而来)安装程序包'/var/folders/wh/vhz_x1f94_qccc73tn_0d_sw0000gp/T//RtmpLaq028/filebd045f3692f/rBLAST_0.99.2.tar.gz'具有非零退出状态”
git clone https://github.com/mhahsler/rBLAST.git
R CMD build rBLAST
R CMD INSTALL <name of the resulting tarball>