我正在尝试从我的 github repo 安装一个示例包:
https://github.com/jpmarindiaz/samplepkg
当 repo 公开时,我可以通过 R 解释器使用以下任何命令安装它:
install_github("jpmarindiaz/rdali")
install_github("rdali",user="jpmarindiaz")
install_github("jpmarindiaz/rdali",auth_user="jpmarindiaz")
但是当 git 存储库是私有的时,我得到一个错误:
Installing github repo samplepkg/master from jpmarindiaz
Downloading samplepkg.zip from
https://github.com/jpmarindiaz/samplepkg/archive/master.zip
Error: client error: (406) Not Acceptable
我还没有弄清楚当 repo 是私有的时身份验证是如何工作的,有什么提示吗?