我是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.
我已安装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.
就像应该的那样。
我在Google上掀起了风暴,并尽我所能想到的一切(多次以多个顺序)。
我正在使用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
外面有人可以帮忙吗?非常感谢。
答案 0 :(得分:1)
我遇到了同样的问题,然后我使用了remotes::install_github()
并在R会话中设置了Sys.setenv("R_REMOTES_NO_ERRORS_FROM_WARNINGS" = "true")
。
参考: