I'd like to know if anyone else has ran into this issue where if you add the zimme:select2-bootstrap3-css Meteor package before the natestrauser:select2 packages you end up with version 1.4.6 of zimme:select2-bootstrap3-css package and version 3.5.1 of the natestrauser:select2 package. However, if you install the natestrauser:select2 package before zimme:select2-bootstrap3-css package then you end up with version 0.1.1 of the zimme:select2-bootstrap3-css package and version 4.0.2 of the natestrauser:select2 package.
I'd like to have the latest of both packages. If this is a bug, I'm wondering if this is a known issue and is being worked on? If there is a solution, I'd like to know. Thanks!
Related
I'm trying to install Rattle and am having problems installing RGtk2. I am using R version 4.1, so there may be a version compatibility issue. However, I noticed that RStudio is installing packages into OneDrive:
Installing package into ‘C:/Users/tdwri/OneDrive/Documents/R/win-library/4.1’
but I am using R in C:\Program Files\R\R-4.1.2\
Question 1: how do I make sure packages are installed in C:\Program Files\R\R-4.1.2 instead of OneDrive?
Question 2: How do I install rattle when I am getting the error:
package ‘RGtk2’ is not available for this version of R.
Question 3:
If the solution to the second question involves downgrading the R version, how can I do that?
I apologize for asking 3 questions. I'm trying to get Rattle to work and these problems came up.
I found an answer to this at https://rattle.togaware.com/
LATEST NEWS: RGtk2 Retired From CRAN December 2021
RGtk2 appears to have been retired from CRAN. To install it from the Microsoft CRAN snapshots:
This worked to get RGtk2 and install rattle
install.packages("https://cran.microsoft.com/snapshot/2021-12-15/bin/windows/contrib/4.1/RGtk2_2.20.36.2.zip", repos=NULL)
This worked- in addition don't forget to find file move it and resave it in the file you need it in.
https://cran.rstudio.com/bin/windows/Rtools/
Installing package into ‘C:/Users/carar/OneDrive/Documents/R/win-library/4.1’
(as ‘lib’ is unspecified)
This worked for me on Mac OS
From this link
https://cran.r-project.org/bin/macosx/
I Installed lower version of R
I installed rattle library
Upgraded my R to latest version and everything work fine
Rattle was archived on CRAN recently but after an update is being unarchived.
This may take a day or so.
In the meantime the following should work:
install.packages("rattle", repos="https://rattle.togaware.com", type="source")
I just checked and it worked for me.
Also RGtk2 has been archived on CRAN though the author indicates it is remains functional.
Yes, please follow the instructions at https://rattle.togaware.com to install RGtk2 from MRAN instead.
install.packages("https://cran.microsoft.com/snapshot/2021-12-15/src/contrib/RGtk2_2.20.36.2.tar.gz", repos=NULL)
I tried installing CRAN into R using
install.packages("cran")
The code would run but in the console the following message would appear
package ‘cran’ is not available for this version of R
How can I install cran on my version of R?
CRAN is a repo not package, have you tried this:
install.packages("xtable",repos = "http://cran.us.r-project.org")
Better still just type install.packages("xtable")
I've started to re-use R through RStudio, and I've not used it for a while. For some reason, I'm having trouble installing tidyverse and a number of other packages. In my previous experience, this was such a simple task. I just reinstalled the latest version of RStudio and it doesn't seem to help.
The problem seems to be that I have a non-zero exit, and that a lot of the dependent packages are not available. Ì get text such as the following as well.
Rtools is required to build R packages but is not currently installed. Please download and install the appropriate version of Rtools before proceeding:
binary source needs_compilation
cli 1.0.0 2.0.2 FALSE
rlang 0.2.0 0.4.5 TRUE
pillar 1.2.1 1.4.3 FALSE
Any advice on where to start?
install.packages(c("cli", "rlang", "pillar"))
I installed the 'forecast' package in a Databricks environment a few days back. It was working fine until this morning when I restarted the cluster. Now, I can't install the package anymore. Could someone help with this?
Have already tried upgrading the current R version (3.5.2) to the latest (3.6.0). That would require upgrading the current Ubuntu version too, which I don't think is possible, since that is the version Databricks is linked to. If there's a way to upgrade the Ubuntu version as well, do let me know.
Here's a screenshot of the error:
FROM THE SCREENSHOT, The 'quadprog' latest version 1.5-5 supports only >= R-3.6 version as yours is R-3.5.2, I would suggest you to download old binaries from CRAN for quadprog and install (refer Install previous versions of R on ubuntu)
After installing quadprog, go for the other packages installation. If same error persists, please repeat above step for that packages too :)
If you are trying this operation through R Console, you can use
packageurl <- "https://cran.r-project.org/src/contrib/Archive/quadprog/quadprog_1.5-4.tar.gz"
install.packages(packageurl, repos=NULL, type="source")
I am having difficulty installing the lme4 and ggplot packages
I've tried to install them by selecting a CRAN mirror (have tried several) and then selecting the packages, and have also tried the following;
install.packages("lme4",repos="http://r-forge.r-project.org")
and
install.packages("ggplot2", dependencies=TRUE)
but however I try to call these packages I get the warning message
package ‘lme4’ is not available (for R version 2.15.2)
or
package ‘ggplot2’ is not available (for R version 2.15.2)
the only answers I can find for problems installing these packages suggest upgrading R to the latest version, but I am using 2.15.2 which I believe is the most recent available.
Has anyone else had this problem?
Any help would be greatly appreciated!!
thanks.
Lian
I was having the exact same problem. Here is what solved it for me:
For convenience I added a default cran mirror in my Rprofile.site file:
local({r <- getOption("repos")
r["CRAN"] <- "http://cran.stat.sfu.ca/"
options(repos=r)})
Then installing packages in this order works:
install.packages("Matrix")
install.packages("nlme")
install.packages("minqa")
install.packages("RcppEigen")
install.packages("lme4",repos="http://lme4.r-forge.r-project.org/repos")
install.packages("ggplot2", dependencies=TRUE)
Hope it works for you as well.
These packages should work fine, maybe try a few more mirrors, for example the one in Austria. Although there are packages who have been thrown of CRAN, e.g. the colorout package has been off CRAN for some time. The solution is to download the package from CRAN manually, and install locally.