Trouble installing tidyverse in R

牧云@^-^@ 提交于 2021-01-28 18:01:52

问题


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


回答1:


It must be an internet connection error. Trying installing it in this way:

install.packages("devtools")
devtools::install_github("hadley/tidyverse")


来源:https://stackoverflow.com/questions/53191416/trouble-installing-tidyverse-in-r

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!