使用 devtools 从 Github 上的 public 存储库安装 R 包时出现 HTTP 404 错误
HTTP 404 error when installing R package from public repo on Github using devtools
我正在尝试从 public Github:
安装 R 包
devtools::install_github(repo='FrankD/EDISON',
ref='MultipleTimeSeries',
subdir='Package/EDISON/')
Error: Failed to install 'unknown package' from GitHub:
HTTP error 404.
Not Found
Did you spell the repo owner (datarichard
) and repo name (EDISON
) correctly?
- If spelling is correct, check that you have the required permissions to access the repo.
有谁知道我为什么会收到此错误? 7 个月前使用相同的命令,所以发生了一些变化。我的开发工具版本是 2.2.1
我尝试将它分叉到我自己的仓库中以删除任何隐藏的授权问题,但我得到了同样的错误,例如:
devtools::install_github(repo='datarichard/EDISON',
ref='MultipleTimeSeries',
subdir='Package/EDISON/')
您的子目录中缺少正斜杠,可以删除结尾的斜杠:
devtools::install_github(repo='datarichard/EDISON',
ref='MultipleTimeSeries',
subdir='/Package/EDISON') # here
我正在尝试从 public Github:
安装 R 包devtools::install_github(repo='FrankD/EDISON',
ref='MultipleTimeSeries',
subdir='Package/EDISON/')
Error: Failed to install 'unknown package' from GitHub: HTTP error 404. Not Found
Did you spell the repo owner (
datarichard
) and repo name (EDISON
) correctly? - If spelling is correct, check that you have the required permissions to access the repo.
有谁知道我为什么会收到此错误? 7 个月前使用相同的命令,所以发生了一些变化。我的开发工具版本是 2.2.1
我尝试将它分叉到我自己的仓库中以删除任何隐藏的授权问题,但我得到了同样的错误,例如:
devtools::install_github(repo='datarichard/EDISON',
ref='MultipleTimeSeries',
subdir='Package/EDISON/')
您的子目录中缺少正斜杠,可以删除结尾的斜杠:
devtools::install_github(repo='datarichard/EDISON',
ref='MultipleTimeSeries',
subdir='/Package/EDISON') # here