我正在使用golem框架创建一个Shiny应用程序。我已经到了最后一部分,我正在测试这个应用程序是否可以通过运行remotes::install_local()
像包一样安装。
但是,我遇到了以下错误:
remotes::install_local()
Error: Failed to install 'XXXX' from local:
HTTP error 404.
Not Found
Did you spell the repo owner (`XXXX`) and repo name (`XXXX`) correctly?
- If spelling is correct, check that you have the required permissions to access the repo.
以下是项目文件夹中的文件-我认为结构是正确的?:
我有点困惑,如果我试图安装本地,为什么它需要回购所有者和名称?(它也列出了不正确的回购)。
谢谢
1条答案
按热度按时间lymgl2op1#
在运行
install_github('owner/repo')
之前,我需要使用credentials::set_github_pat()
分配个人访问令牌。