1

在尝试:

install_github("riv","tomasgreif")

我收到以下错误:

parse_repo_spec(repo) 中的错误:无效的 git repo 规范:'riv'

4

2 回答 2

2

的使用install_github("riv","tomasgreif")似乎已被弃用。尝试使用以下格式

install_github('repo owner/repo name')

在你的情况下

install_github('tomasgreif/riv')
于 2020-09-13T03:16:19.260 回答
0

riv重命名woe. 作者指出

此软件包不再维护。我把它放在这里只是因为有些人觉得它很有趣

像这样从 GitHub 安装:devtools::install_github("tomasgreif/riv")安装woe. 也就是说,有一个名为rivCRAN 的 R 包。

于 2019-04-10T11:46:48.890 回答