Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在尝试:
install_github("riv","tomasgreif")
我收到以下错误:
parse_repo_spec(repo) 中的错误:无效的 git repo 规范:'riv'
的使用install_github("riv","tomasgreif")似乎已被弃用。尝试使用以下格式
install_github('repo owner/repo name')
在你的情况下
install_github('tomasgreif/riv')
包riv已重命名为woe. 作者指出:
riv
woe
此软件包不再维护。我把它放在这里只是因为有些人觉得它很有趣
像这样从 GitHub 安装:devtools::install_github("tomasgreif/riv")安装woe. 也就是说,有一个名为rivCRAN 的 R 包。
devtools::install_github("tomasgreif/riv")