R install_github:错误:无法安装“未知包”

tgr*_*bam 5 git r github

我是 GitHub 的新手,我很困惑。我无法去install_github上班。

我按照此处的有用说明设置了我的帐户:https ://kbroman.org/github_tutorial/pages/init.html 。我有一个帐户和一个存储库,用于存储一些 R ggplot 设置: https: //github.com/tgraybam/TorontoPlot

好的。现在我想将设置文件从我的存储库安装到 R 项目中,因此:devtools::install_github('tgraybam/TorontoPlot').

但执行命令会返回错误:

Error: Failed to install 'unknown package' from GitHub: HTTP error
404. Not Found Did you spell the repo owner (`tgraybam`) and repo name (`TorontoPlot`) correctly? - If spelling is correct, check that you
have the required permissions to access the repo.
Run Code Online (Sandbox Code Playgroud)

我已经devtools安装了。我没有拼写错误。这是我自己的仓库。我可以很好地克隆它:

git clone https://github.com/tgraybam/TorontoPlot.git

我可以install_github与不同的存储库一起使用(这很好用: install_github("kbroman/broman")。)

我可以验证。ssh -T git@github.com回报

Hi tgraybam! You've successfully authenticated, but GitHub does not provide shell access.
Run Code Online (Sandbox Code Playgroud)

就像它应该的那样。

我在谷歌上搜索了一番,并尝试了我能想到的一切(多次按多个订单)。

我使用的是 Mac。这是我的系统和 R 详细信息:

platform       x86_64-apple-darwin15.6.0   
arch           x86_64                      
os             darwin15.6.0                
system         x86_64, darwin15.6.0        
status                                     
major          3                           
minor          5.2                         
year           2018                        
month          12                          
day            20                          
svn rev        75870                       
language       R                           
version.string R version 3.5.2 (2018-12-20)
nickname       Eggshell Igloo         
Run Code Online (Sandbox Code Playgroud)

有人可以帮忙吗?非常感谢。

Bel*_*ter -1

我遇到了同样的问题,然后我从 R 会话中使用remotes::install_github()和设置。Sys.setenv("R_REMOTES_NO_ERRORS_FROM_WARNINGS" = "true")

参考:

https://github.com/r-lib/remotes

https://github.com/r-lib/remotes/issues/403