Error loading library tidyverse, dbplyr, ggplot2 - r

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

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')

loading and using tidyverse

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.

Loading Packages in R

library(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 ‘vctrs’
In addition: Warning message:
package ‘ggplot2’ was built under R version 3.6.3
library(dplyr)
Error: package or namespace load failed for ‘dplyr’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
there is no package called ‘vctrs’
In addition: Warning message:
package ‘dplyr’ was built under R version 3.6.3
I just looked up at Cran, whether vctrs 0.3.4 exists and it looks like version 0.3.4 only exists for macOS. As I can see from the URL you have posted in the comments you're using the OS Windows. And for Windows only vctrs 0.3.3 exists.
So my suggestion (little bit ugly but well...): Download the zip-src of vctrs 0.3.3 manually and then you can choose in RStudio to install from the zip file you've downloaded.
Or my other suggestion you can use: install.packages.zip("zip-url-manually-copied"), for more look: https://rdrr.io/cran/installr/man/install.packages.zip.html.
Have a good day!
I got solved, I need to upgrade my R. Previously I am using version 3.6.0 and now I upgraded to 4.0.2, after upgrade everything works fine.

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