loading and using tidyverse - r

I have been using tidyverse for a long time now but over the past few days every time i try to use it i get the following error:
** Error: package or namespace load failed for ‘tidyverse’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
namespace ‘vctrs’ 0.3.4 is already loaded, but >= 0.3.6 is required
**
I have tried everything. I have uninstalled and reinstalled r, i have updated the packages but I cannot get it to work. I am getting quite desperate at this stage and would appreciate any help possible.

Related

Why do I get this error when loading library tidyverse?

Yesterday I loaded tidyverse` as usual, but not I get the following error:
library(tidyverse)
Warning: package ‘tidyverse’ was built under R version 4.1.3Error: package or namespace load failed for ‘tidyverse’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]): namespace ‘cli’ 3.1.0 is already loaded, but >= 3.4.1 is required
I already updated my packages.
Also, I have tried the following:
remove.packages("tidyverse")
install.packages("tidyverse")
remove.packages("rlang")
install.packages("rlang")
But again, when I load library(tidverse) I get the same error.
At the end, I updated my R version (to 4.2.2) and changed it to RStudio manually: Tools -> Global Options -> R version.

I decided to update all mypackages going to packages and then clicking update all. After this, I am getting several erros in lots of packages

The erros looks like this:
library(ggpubr)
Error: package or namespace load failed for ‘ggpubr’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
namespace ‘vctrs’ 0.5.1 is already loaded, but >= 0.5.2 is required
library(tidyverse)
Error: package or namespace load failed for ‘tidyverse’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
namespace ‘vctrs’ 0.5.1 is already loaded, but >= 0.5.2 is required
I have uninstalled and reinstalled R and R studio, and I am still getting the same erros.
Now I can't even open my CVS files bc R does't load the packges for it. Does someone went through the same problem?
I have uninstalled and reinstalled R and R studio, and I am still getting the same erros.I expect to get my R running properly again.
We could use
update.packages('vctrs')

Error loading library tidyverse, dbplyr, ggplot2

I would like to install more packages in RStudio and got a error message. Before, I worked with gglot2 and it worked well. When I tried to install other packages, more errors occure.
I loaded library DBI, vctrs without a problem, then I'm trying:
> library(ggplot2)
Error: package or namespace load failed for ‘ggplot2’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
namespace ‘vctrs’ 0.4.0 is already loaded, but >= 0.5.0 is required
> library(tidyverse)
Error: package or namespace load failed for ‘tidyverse’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
namespace ‘vctrs’ 0.4.0 is already loaded, but >= 0.4.1 is required
> library(lubridate)
> library(dbplyr)
Error: package or namespace load failed for ‘dbplyr’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
namespace ‘cli’ 3.2.0 is already loaded, but >= 3.3.0 is required
I checked all updates, restart R Studio, tried to update vctrs, but anything works. Could anyone help me?
It appears you have old versions of packages installed and loaded.
For example, you have a version of vctrs installed but ggplot2 needs a more recent version. This is especially a problem if you have already called library(vctrs) because the active version of the package is already determined.
The simplest solution is to update your packages. Here are many questions on Stackoverflow about how to do that. Try some of the following links:
Update R using RStudio
How to update packages
Update packages asks for every package

error loading packages R, almost all packages

Today I opened R as usual and loaded all my libraries as usual, however most of my packages report an error now!
For example
library(ggmap)
> library(ggmap)
Loading required package: ggplot2
Error: package or namespace load failed for ‘ggplot2’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
there is no package called ‘lazyeval’
Error: package ‘ggplot2’ could not be loaded
I have never had this error before or encountered the package 'lazyeval'.
The story is similar for many other packages:
library(lubridate)
Error: package or namespace load failed for ‘lubridate’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
there is no package called ‘stringi’
Somehow it seems that I need to install all packages again?
Any idea what happened? As far as I know nothing has changed since I used R yesterday..

Installing ez library on R

I am new to R and feeling a bit confused. I am getting this error message
library(ez)
Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()),
versionCheck = vI[[j]]) :
namespace ‘reshape2’ 1.4.1 is already
loaded, but >= 1.4.2 is required Error: package or namespace load
failed for ‘ez’
I have already checked the version that I have and it says 1.4.2. What should I do?
Thank you SO much
Maybe ‘reshape2’ 1.4.1 is still loaded..try the following
remove.packages("reshape2")
remove.packages("ez")
install.packages("ez")
Should work afterwards.
If not then try this afterwards
detach("package:reshape2", unload=TRUE)
And additionally restart the R session.

Resources