无法使用R Shiny Golem应用程序安装_local()

bihw5rsg  于 2023-02-10  发布在  Go
关注(0)|答案(1)|浏览(144)

我正在使用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.

以下是项目文件夹中的文件-我认为结构是正确的?:

我有点困惑,如果我试图安装本地,为什么它需要回购所有者和名称?(它也列出了不正确的回购)。
谢谢

lymgl2op

lymgl2op1#

在运行install_github('owner/repo')之前,我需要使用credentials::set_github_pat()分配个人访问令牌。

相关问题