Error: package or namespace load failed for ‘tidyverse’ in loadNamespace

前端 未结 4 952
情歌与酒
情歌与酒 2020-12-21 05:06

I\'m getting the following error when I\'m loading tidyverse. It was all working fine a few minutes ago when I was running my shinyapp. How should I resolve this?

4条回答
  •  青春惊慌失措
    2020-12-21 05:35

    I had the same problem but managed to tackle it. You may remove the current version of rlang using the following command:

    remove.packages("rlang")
    

    and then install the rlang again:

    install.packages("rlang")
    

    After that run the library:

    library(tidyverse)
    

提交回复
热议问题