0

I have attempted to use devtools::install_github("hadley/multidplyr")

however when I use it I get the error

 Error: Failed to install 'multidplyr' from GitHub:
  (converted from warning) cannot remove prior installation of package ‘rlang’
Dominic Naimool
  • 313
  • 2
  • 11
  • Did you already have the `rlang` package loaded when you tried to install the package? Restart your R session and try before loading any other packages. – MrFlick Dec 10 '19 at 20:56
  • I installed dependency 'qs' manually and reinstalled 'rlang' then 'multidplyr' ran successfully – Dominic Naimool Dec 10 '19 at 21:09

1 Answers1

0

I installed dependency 'qs' manually and reinstalled 'rlang' then 'multidplyr' ran successfully

install.packages ('qs') install.packages ('rlang')

Dominic Naimool
  • 313
  • 2
  • 11