https://github.com/hubentu/conda-r-devel
conda recipe for r development version
https://github.com/hubentu/conda-r-devel
conda-recipe r r-base
Last synced: 3 months ago
JSON representation
conda recipe for r development version
- Host: GitHub
- URL: https://github.com/hubentu/conda-r-devel
- Owner: hubentu
- Created: 2020-01-07T19:17:40.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-04T16:36:07.000Z (12 months ago)
- Last Synced: 2025-01-09T14:05:11.110Z (5 months ago)
- Topics: conda-recipe, r, r-base
- Language: Shell
- Size: 23.5 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## R development version (4.0.0) conda recipe
* Copied from https://github.com/conda/conda-recipes/blob/master/r-base
* Only tested on ubuntu 18.04 and miniconda3Add forge channel.
```sh
conda config --add channels conda-forge
```## Howto
* Create r-devel env
```sh
git clone https://github.com/hubentu/conda-r-devel.git
cd conda-r-devel
conda create -n r-devel
conda activate r-devel
```* Build and install
From source
```sh
conda install conda-build
conda build .
conda install --use-local path/to/r-devel
```Or just install the compiled version from ubuntu 18.04
```sh
conda install --use-local r-devel-4.0.0-0.tar.bz2
conda install readline
```* Use R 4.0
```sh
conda activate r-devel
R --version
```