如何使用 windows 10 和 R 3.4.4 安装和调用包“multidplyr”
How to install and call package ‘multidplyr’ using windows 10 and R 3.4.4
我尝试过使用
devtools::install_github("hadley/multidplyr")
但是当我使用它时出现错误
Error: Failed to install 'multidplyr' from GitHub:
(converted from warning) cannot remove prior installation of package ‘rlang’
我手动安装了依赖项 'qs' 并重新安装 'rlang' 然后 'multidplyr' 运行 成功
install.packages ('qs')
install.packages ('rlang')
我尝试过使用
devtools::install_github("hadley/multidplyr")
但是当我使用它时出现错误
Error: Failed to install 'multidplyr' from GitHub:
(converted from warning) cannot remove prior installation of package ‘rlang’
我手动安装了依赖项 'qs' 并重新安装 'rlang' 然后 'multidplyr' 运行 成功
install.packages ('qs') install.packages ('rlang')