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

前端 未结 4 939
情歌与酒
情歌与酒 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)
    
    0 讨论(0)
  • 2020-12-21 05:36

    I know this is an old question but I faced this same problem. I restarted R session and it worked fine after that. Hope this helps someone! :)

    0 讨论(0)
  • 2020-12-21 05:36

    Also had similar problem but resolved it after a struggle. I used:-

    devtools::install_github("tidyverse/tidyverse")
    
    0 讨论(0)
  • 2020-12-21 05:41

    I know this might be late answer,but I had the same issue and I fixed it by updating the packages, specifically : ggplot2, scales. according to this Rstudio site

    0 讨论(0)
提交回复
热议问题