tidyverse package will not load - rstudio

I am running the latest version of Rstudio (1.1.453) on Mac. Since installing the latest version of R-Studio, I can no longer get tidyverse package to load. Any suggestions on how I can fix this?
I get the following error message.
> library("tidyverse", lib.loc="/Library/Frameworks/R.framework/Versions/3.5/Resources/library")
Error: package or namespace load failed for ‘tidyverse’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
there is no package called ‘dplyr’

Have you tried installing it with dependencies:install.packages("tidyverse", dependencies = TRUE)
I had a similar issue and if this doesn't fix it, try to install dplyr manually: install.packages("dplyr")

Related

Package installing question, (Survival analysis)

I met this problem when I install the package “survminer”
Other packages are still available for installing except for this one.
How could I solve this problem?
Should I update my Rstudio ?
The part with namespace 'tibble' 2.1.3 is already loaded, but >= 3.0.0 is required is telling you that you need to upgrade your tibble package to version > 3.0.0. Try update.packages(ask=F)
Similar to R install package loaded namespace

Can not load rgl package

I´m trying to load the package NormqPCR in RStudio (Version 1.1.463) and macOS Mojave Version 10.14.3. When I try to load the package with library("NormqPCR") Y get the following output:
> library("NormqPCR", lib.loc="/Library/Frameworks/R.framework/Versions/3.5/Resources/library")
Loading required package: RColorBrewer
Loading required package: qpcR
Loading required package: MASS
Loading required package: minpack.lm
Loading required package: rgl
|
After that, RStudio don´t respond and I have to force quit RStudio.
Then I load all this packages one by one, and when I try with rgl, RStudio don´t responde again, so, I guess that the problem is this package.
Anyone can help me with this trouble? Because I still haven´t been able to fix it!
Thanks!!
I can solve this trouble! I just install XQuartz on my computer and then I can be able to load rgl package and NormqPCR

Rcpp won't install after updating R and RStudio on Mac OS X 10.11.6

I've just updated R to R3.3.2 and RStudio to 1.0.136. When I attempted to install UsingR package via the Studio Install Packages menu, I got this message:
ERROR: compilation failed for package ‘Rcpp’
* removing ‘/Library/Frameworks/R.framework/Versions/3.3/Resources/library/Rcpp’
Warning in install.packages :
installation of package ‘Rcpp’ had non-zero exit status
Trying to use library(UsingR) produces this message.
library(UsingR)
Loading required package: Hmisc
Loading required package: ggplot2
Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
there is no package called ‘Rcpp’
Error: package ‘ggplot2’ could not be loaded
I found some stuff about this online, but far too complicated for me to understand. Anyone have a simple way of fixing this?
I strongly suspect is an error on your end. You are using R 3.2.3, which is outdated by almost one year as R 3.3.0 came out in April, we are now at R 3.3.2.
R stores all its binary packages under a patch with the major.minor. So the most recent OS X (binary) version of Rcpp at indexed at CRAN in a patch with 3.3 (see [here])https://cloud.r-project.org/bin/macosx/mavericks/contrib/3.3/Rcpp_0.12.8.tgz) -- but your version of R will read only at 3.2 so you will not see updated versions.
The easiest fix is to update to R 3.3.2.
Or install manually by downloading from the Rcpp source URL at CRAN and then pointing at the source -- or doing install.packages("Rcpp", type="source"). You may run into other OS X issues for which you will get help from other questions here -- but this gets you current Rcpp.

Softaculous/AMPPS - The installation package could not be found (localhost)

The installation package could not be found error returns after I hit install on http://localhost/ampps/ for most of the available packages such as Wikimedia.
I tried to find out where this error comes from such as updating setting in
http://localhost/ampps-admin/
and no success yet. Anyone with any recommendation? Thanks!
Delete the folder Ampps/ampps/scripts/mw and try installing again from http://localhost/ampps again.
Softaculous will download the package automatically if not found.

Agave dependency error

I am trying to install Agave under Fedora, but I got this error:
configure: error: gnome-doc-utils >= 0.3.2 not found
I tried to compile and install the gnome-doc-utils from this page, but i still got this error,and when i try the
yum list installed gnome-doc-utils*
command, I can't find the package. Do I have to register the package after installing? I don't think I have a error for the make install, because I don't see any the text error in the process, or I could be wrong.
In general, package managers (tools like yum) don't know that something has been installed on your machine unless it was installed as a package. If an agave package for Fedora exists, I would suggest using that instead of compiling from source.

Resources