我正在尝试从我的github回购中安装示例软件包:https://github.com/jpmarindiaz/samplepkg
我可以通过R解释器使用以下任何命令在回购公开时安装它:

  • install_github("jpmarindiaz/rdali")
  • install_github("rdali",user="jpmarindiaz")
  • install_github("jpmarindiaz/rdali",auth_user="jpmarindiaz")

  • 但是当git仓库是私有(private)的时,我得到一个错误:
    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
    

    我还没有弄清楚当回购是私有(private)的时身份验证如何工作,有什么提示吗?

    最佳答案

    您是否尝试设置个人访问 token (PAT)并将其作为auth_tokeninstall_github()参数的值传递?

    请参阅底部的?install_github(软件包devtools版本1.5.0.99)。

    07-24 12:50