Conda install R 3.4.0 - r

I am trying to install R 3.4.0 through conda but seems like is currently missing in the channel.
((Renv)) $ conda install -c r r=3.4.0
gives
Fetching package metadata ...........
Solving package specifications: .
Error: Package missing in current linux-64 channels:
- r 3.4.0*
Is there any way I can install 3.4.0 through in a conda environment?

The latest version of r available through the r channel is 3.3.2. You can install that like this:
conda install -c r r=3.3.2
You can always look through anaconda.org to look at a complete list of packages from default and community channels.

You can now install R 3.4.1 through conda.

Related

Set up conda environment for R package not on CRAN, installs to wrong location

My goal is to use this package (https://github.com/tiagodc/TreeLS) but it was deprecated from CRAN (https://cran.r-project.org/web/packages/TreeLS/index.html). It requires an older version of R yet its dependencies such as the raster package require R 3.5 or up. I considered two approaches.
using R studio and changing the global options to an older version of R, but I frequently use many geospatial packages and since this package has older dependencies I didn't want to install older versions of packages I use all the time.
Create a virtual environment in Mini Conda 3 dedicated to use for this package. I choose this option because it would be self contained.
Here is the workflow so far.
conda search -c r r
conda create -n newR351 -c conda-forge r-base=3.5.1 -y
conda install -c r rtools -y
Successfully creates a conda environment called newR351 and installs r tools to that environment folder within mini conda 3.
Location of conda environment with R 3.5.1 install
C:\Users\me\Miniconda3\envs\newR351
When I try to install devtools so I can remote install TreeLS from github I get a warning with zero exit status. The devtools package installs, but it installed to my appdata folder and not my mini conda environment.
conda install -c r devtools -y
The downloaded source packages are in
'C:\Users\me\AppData\Local\Temp\RtmpYByvp8\downloaded_packages'
How can I access devtools on my conda environment newR351? Do I need to build a cran skeleton? When I activate R in this environment and try to load the devtools library I get this.
(newR351) C:\Users\me>R
R version 3.5.1 (2018-07-02) -- "Feather Spray"
Copyright (C) 2018 The R Foundation for Statistical Computing
Platform: x86_64-w64-mingw32/x64 (64-bit)
...
>library(devtools)
Error in library(devtools) : there is no package called 'devtools'
What are best practices for creating an environment specific for an older R package? Anyone else use TreeLS?
First, the devtools isn't showing up because R packages in Conda repositories are conventionally prefixed with "r-", so installing conda install r-devtools should do the trick. However, I don't think Conda is the best strategy here.
Below R version 3.6, the Conda package coverage for R packages is rather poor. Also, installing non-Conda packages that require compilation into a Conda R environment is a pain and generally doesn't work out-of-the-box in my experience. Plus, not only does the TreeLS require compilation, but it has dependencies that are not Conda packages which require compilation. I would avoid this.
Option 1 is feasible. R allows multiple installations, and with manipulating environment variables (I think RSTUDIO_WHICH_R, R_LIBS are the pertinent ones) one can switch between them.
However, were this my situation, I'd spin up a docker container, probably rocker/rstudio:3.5 and use that for this project. Since the underlying image is Linux, it'll take awhile to compile, but you can version it at that point and then always have that available to spin up. This avoids having to muck around with any system settings and should be mostly straight-forward installing.

Installing rsvg library in R 4.0.2 (conda-forge)

I'm facing difficulties downloading the r package rsvg. I created first an environment with conda for the latest R version 4.0.2 following these instructions. I was able to download many other R packages & bioconductor packages without problem, however, this one produces huge pile of lines while configuring it and ends with errors downloadind its dependencies (systemfonts, stringi, stringr, gdtools, magick, svglite, knitr). My exact command is install.packages("rsvg", dependencies =T). Trying to download each of those packages produced also a tree of required dependencies (with configuration fail at the end of each).
Among the lines I noticed this error /user/include/freetype2/freetype/config/ftheader.h:3:12: fatal error x86_64-linux-gnu/freetype2/config/fthreader.h no such file or directory which make me suspect that my R installation is incopmlete or corrupted. I tested it with other R versions (e.g. R 3.6.0) yet the same error appear. Installing it on windows (Rstudio 3.6.2) also didn't work, and now I'm wondering if this package needs to be installed differently or it is system related problem? Any help would be highly appreciated
You need to create a new environment and then you can install R 4.+ in Anaconda. Follow these steps.
conda create --name r4-base
After activating r4-base run these commands
conda install -c conda-forge r-base
conda install -c conda-forge/label/gcc7 r-base
Finally, you will notice r-basa version 4 will be installed.
Thereafter, you can install any supported packages. But with this only, you won't have the ability to use it in the Jupyter notebook. You need to install install.packages('IRkernel') and Jupyter notebook as well if you want to use it. Otherwise you are good to go with R-Studio.
For Jupyter Installation and RKernel.
conda install jupyter
Then open the R console. Write in R console
install.packages('IRkernel')
IRkernel::installspec()
Congrats! You can use Notebook for Python and R.

Cannot install any package in R

I am using Windows, and am unable to install any package in R. I tried it with R 3.53 and 3.62. Both give an error.
I get the following type of error in the end:
Error in install.packages : cannot open file 'C:/Users/Arti Agarwal/Documents/R/win-library/3.5/file3a2065f64427/BH/include/boost/geometry/util/readme.txt': Permission denied
I also get this type of an error in between:
There is a binary version available but the source version is later:
binary source needs_compilation
yaml 2.2.0 2.2.1 TRUE
I don't know how to troubleshoot this further. Any suggestions?
I think I fixed it. Posting the answer for the benefit for anyone else having the same problem.
1) I fixed the file permission error by running R as admin.
2) The packages don't work with R 3.6.2 or R 3.5.3 but strangely enough they work with R 3.6.1
It gives a warning that the package was built with R 3.6.2 but it doesnt work with it when you install it. Hence the confusion.
thanks for all of your help.
Install conda for windows
# if you have 64 bit computer:
https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe
# if 32 bit computer:
https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86.exe
Run the exe.
Create a new environment for your R:
# create new virtual environment for R with name 'newR'
conda create --name newR
# enter this created environment
conda activate newR # or: source activate newR
# install there now newest R
conda install -c conda-forge r-base
# you can also install rstudio
conda install -c conda-forge rstudio
# and also more difficult to install R packages
# search for them by googling: 'conda install <packagename>'
# mostly in anaconda site you see command for install.
# next time you want to start R do:
# enter environment
conda activate newR # if that doesn't work: source activate newR
# start R
R
Learn basic conda commands investing only 11 minutes:
https://www.youtube.com/watch?v=YJC6ldI3hWk
If you want to become a serious developer/programmer - sooner or later anyway you have to learn conda.

Error: package or namespace load failed for 'RevoUtilsMath'

I'm getting a little bit crazy with this issue. I'm trying to install an R package using conda in my environment (python 2.7) in my home on a cluster (i.e. without root permissions). I firstly installed R in my env using:
conda install -c r r=3.4
Then:
conda install -c conda-forge python-igraph
(because igraph is required by my library of interest)
and finally:
conda install -c conda-forge r-diffusionmap
Unfortunately when I launch R the following message appears:
Error: package or namespace load failed for 'RevoUtilsMath': .onLoad
failed in loadNamespace() for 'RevoUtilsMath', details: call: NULL
error: Remove Microsoft R and then re-install. Be sure to select MKL
libraries as an install option.
During startup - Warning message:
package 'RevoUtils' was built under R version 3.4.3
What does it mean? How can I solve this?
Thank you in advance
I had this same issue after I installed some libraries (Rcpp included) in my root R, but not my conda environment (which screwed up conda). This would cause kernel death anytime a jupyter notebook running R was even opened.
The fix for me was:
Uninstall Anaconda3
Reinstall Anaconda3
Reinstall all the libraries I needed (mostly just Bioconductor in R)
A few other issues popped up, like package inconsistencies, but I dealt with those as described here.
All R packages on conda-forge (or Bioconda) are compiled against one single version or R for each new release branch (usually starting from patch 1, so 3.x.1, except for 3.4.3). This is due to ABI incompatibility problems.
Also note that defaults and conda-forge channels are (where) not binary compatible (although now they should be). And that since 2018 the default anaconda channel is distributing Microsoft R Open as default R, whether all packages from conda-forge should be preferably used with R from conda-forge.
You should be able to solve this issue by installing R using conda install -c conda-forge r-base.
the same error information for me when I open R for run code in ubuntu platform(18.4), and there is no other useful methods to solve it.My R version is 3.4.3.enter image description here

Linking Bash R to RStudio, Version/Package Libraries Out of Sync

I am struggling with how to link/sync the version of R that I access from the bash terminal on Mac OSX to the version of R (and R libraries) that I have in R Studio.
Some background:
I installed R/R studio by downloading the most recent versions available from the developer's websites as of 10/9/2016.
I previously had R installed on bash, but that version was 3.2.5 not 3.3.1 that I downloaded online. So if I tried to open an R script from bash, it would launch a deprecated version of RStudio that crashed.
To fix this, I used Brew to unlink the old version of R, and reinstall R in bash.
brew unlink r
brew install R
The Problems:
Now when I launch an R script from terminal, it opens the correct version of RStudio, which has a version:
version.string R version 3.3.1 (2016-06-21)
nickname Bug in Your Hair
However, if in bash I simply launch R using $ R, I have version:
R version 3.3.0 (2016-05-03) -- "Supposedly Educational"
Furthermore, the packages installed in RStudio are not linked. In Rstudio I can load a package library such as library(tidyverse) without error.
In bash's $ R, the above command library(tidyverse) throws an error:
Error in library(tidyverse) : there is no package called ‘tidyverse’
What I would like is a way to link the bash version of R and Rstudio such that the R-versions are the same and such that packages installed in R are recognized in RStudio, and RStudio installed packages can load in bash R.
Thanks for your help.
The default behavior should be that R and Rstudio share the same versions and packages. I imagine the issue you're seeing has to do with having an outdated version of homebrew at the time of install.
I would recommend uninstalling and re-installing, as I was unable to reproduce your issue using the latest Homebrew packages:
brew uninstall r
brew update
brew update # (run twice)
brew cleanup
brew doctor
Fix any issues raised by brew doctor
brew tap homebrew/science
brew install r
I did not have Rstudio installed, so I installed it from Homebrew using cask -- This should not be necessary if you already have Rstudio installed from the developer's site.
brew cask install rstudio
After taking these steps I get the following in both R Studio and in the terminal:
R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
library(tidyverse)
Error in library(tidyverse) : there is no package called ‘tidyverse’
At this point, in my terminal window, I ran:
install.packages("tidyverse")
Finally, returning to R Studio after the install:
> library(tidyverse)
Loading tidyverse: ggplot2
Loading tidyverse: tibble
Loading tidyverse: tidyr
Loading tidyverse: readr
Loading tidyverse: purrr
Loading tidyverse: dplyr
Conflicts with tidy packages --------------------
filter(): dplyr, stats
lag(): dplyr, stats

Resources