issue with running ggplot2, dplyr, tidytext

HI team,

When i run ggplot 2, dplyr, tidytext libraries, i get below error. I tried to reinstalled Rstudio and i still get similar error. This happened after i tried to load qdap library.

Could you please help what is the issue with this?

library(dplyr)
Error: package or namespace load failed for ‘dplyr’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
namespace ‘ellipsis’ 0.3.1 is already loaded, but >= 0.3.2 is required
library(ggplot2)
Error: package or namespace load failed for ‘ggplot2’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
namespace ‘ellipsis’ 0.3.1 is already loaded, but >= 0.3.2 is required
library(tidytext)
Error: package or namespace load failed for ‘tidytext’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
namespace ‘ellipsis’ 0.3.1 is already loaded, but >= 0.3.2 is required
In addition: Warning message:
package ‘tidytext’ was built under R version 4.0.5

Thank you!

It looks like you need to update the ellipsis package. Try

install.packages("ellipsis")

Thank you!!
I reinstalled again Rstudio and Rtool and it worked.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.