Reputation: 33
I'm having trouble installing tidyverse in R. When installing the package, the installation starts but stops after a while and nothing happens. It seems like it's still in "installation mode" since I cannot to anything else (when I try to create a variable, it doesn't show up in the global environment/nothing happens).
What am I doing wrong?
Upvotes: 1
Views: 356
Reputation: 13309
It must be an internet connection error. Trying installing it in this way:
install.packages("devtools")
devtools::install_github("hadley/tidyverse")
Upvotes: 1