我无法安装github
中的任何软件包。当我尝试以下代码时
remotes::install_github('yihui/xaringan', upgrade = TRUE)
我收到以下信息
Downloading GitHub repo yihui/xaringan@master
Error: HTTP error 422.
No commit found for SHA: rc-0.3.1
Rate limit remaining: 4990/5000
Rate limit reset at: 2019-02-22 11:49:24 UTC
请想办法解决这个问题。
最佳答案
我认为这和https://github.com/r-lib/remotes/issues/273是同一个问题。请改为:
remotes::install_github('yihui/xaringan', upgrade = FALSE)
由于有问题的包似乎是rlang(以前是从github安装的,但后来删除了一个名为
rc-0.3.1
的分支),因此需要从cran重新安装它。关于r - remotes::install_github错误:HTTP错误422。未找到SHA的提交:rc-0.3.1,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54825665/