这个报错我之前遇到过很多次,相信很多人也都碰到过,仔细一看发现中文<u style="border-bottom: 1px solid rgb(68, 68, 68); text-decoration: none;">有二进制版本的,但源代码版本是后来的”</u>这句话,心里有谱了——直接安装二进制binary版本不就行了~
[图片上传失败...(image-1ba913-1690107171277)]
<figcaption style="color: rgb(153, 153, 153); font-size: 0.9em; line-height: 1.5; margin-top: calc(0.666667em); padding: 0px 1em; text-align: center;">gld安装成功</figcaption>
至此,报错解决。对于其他有binary版本的R包,遇到
had non-zero exit status
报错,
install.packages("xx",type="binary")
应该也都可以轻松解决。
可以取消这个功能,在R中:
Sys.setenv(R_INSTALL_STAGED = FALSE)
install.packages("devtools", repos="http://cran.r-project.org", clean=TRUE)
网友评论