在服务器安装maftools
包时报错:
> devtools::install_github("PoisonAlien/maftools")
Installation failed: error setting certificate verify locations:
CAfile: microsoft-r-cacert.pem
CApath: none
stackoverflow
上不少人说重装RCurl
包即可,但没有解决。
系统是CentOS,没有root权限,用另外一种方法——即本地安装,来跳过install_github()
环节。
先使用git clone
克隆安装包,然后R CMD build 包名
进行构建,然后R CMD install 包名.tar.gz
进行安装。
或使用
install.packages(<pathtopackage>, repos = NULL, type="source")