r – Error in library(dplyr) : there is no package called ‘dplyr’
r – Error in library(dplyr) : there is no package called ‘dplyr’
Try install.packages(dplyr)
, the double quote is important.
‘
You dont have the package installed. To do that use :ninstall.packages(dplyr)
n
Then library(dplyr)
‘
r – Error in library(dplyr) : there is no package called ‘dplyr’
this problem happened to me, too. The reason is that after you run install.packages(dplyr)
, the package installed in your R library (check here: C:\Program Files\R\R-3.5.1\library) is actually called dbplyr.
n
So if you run library(dplyr)
, there should be no library under this name.
n
My solution is: turn off R studio, open it again. The run:
n
install.packages(Rcpp)ninstall.packages(dplyr)n
Related posts on package :
- How do I update Gentoo packages?
- Does FreeBSD have a package manager?
- How many packages are there in Termux?
- How do I remove a package in R?
- How do I install AWS packages?
- Can’t install .deb packages in Ubuntu?
- How many packages are there in Termux?
- What is meta package Ubuntu?
- How do I remove an RPM package?