yoman
yoman

Reputation: 33

Trouble installing tidyverse in R

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? This is what the console looks like when the installation stops

Upvotes: 1

Views: 356

Answers (1)

NelsonGon
NelsonGon

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

Related Questions