Can anyone help me to install R in miniconda.
Please help me in this regards
regards
Asheesh
jdlong
December 11, 2018, 12:47pm
2
mara
December 11, 2018, 1:58pm
3
Since it sounds like you're asking about R not RStudio (see FAQ below for disambiguation), I'm going to move this into General .
Aside: goals for this thread I'm hoping this will help people disambiguate R from RStudio, and also help with getting questions in the right category. This is a bit of a mashup of the times I've tried to explain this in individual threads, so please feel free to add to this topic for further clarification/point out corrections, etc.
Before putting a code-related question in the #rstudio-ide category or using the rstudio tag, it's helpful to ask yourself:
Does this work in the regular R GUI, but not when you're in RStudio?
If you're using RStudio , you're using R — RStudio is just an IDE (Integrated Development Environment) in which you are using the R language. (On of my favourite fi…
jdlong
December 11, 2018, 2:08pm
4
If you look at the docs and run into specific snags, please don't hesitate to ask.
Thanks for the responding me, I already go through the web link. But it works for Anaconda complete package. But not for miniconda. I think some additional package it to be install on miniconda before follow the steps mentioned in weblink.
Kindly help me further in this regards
regards
Asheesh
jdlong
December 15, 2018, 1:28pm
6
are you getting an error? You'll find you get better feedback if you share what you tried along with the output the computer gives you.
Dear Sir,
I tried following commands in miniconda Ubuntu 16.04 environment to install R
conda create -n r-environment r-essential r-base
System run the command and struck on Solving Environment step. After running for an hours or so it till on solving environment step.
please help me in this regards
thanks
Asheesh
1 Like
jdlong
December 17, 2018, 10:32am
8
what operating system are you on?
If you are on Linux try reinstalling miniconda:
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh
RUN bash ~/miniconda.sh -b -p ~/miniconda
If you are on windows, make sure Windows Defender or other antivirus is not running.
This is not an R issue, but rather a conda issue. I happened to stumble on it recently:
opened 06:37PM - 06 Dec 17 UTC
closed 05:29PM - 08 Dec 17 UTC
locked
I followed instructions from here https://www.anaconda.com/blog/developer-blog/h… ow-to-get-ready-for-the-release-of-conda-4-4/
to get conda 4.4
My conda history: Was using exclusively conda-forge (well, i had conda-forge on top of my channels, and the defaults below.
Executed commands to get conda 4.4:
```bash
$ conda config --add channels conda-canary
$ conda update conda
$ conda config --system --add pinned_packages conda-canary::conda
```
then put this in my .zprofile:
```bash
. /Users/klay6683/miniconda3/etc/profile.d/conda.sh
```
withOUT the recommended "conda activate base" because I like to have my default environment to be NOT root/base. Is that a problem? I thought it was frowned upon doing everday work in root/base? At least I corrupted more than one miniconda install doing so.
I have my iTerm2 profiles set up that each new terminal now executes "conda activate stable" and confirmed that it works correctly, e.g. paths are set correctly.
Then I executed a "conda update --all" in my main environment called "stable" (guess that's that? ;)
and then I got feedback:
```bash
Solving environment: done (after a minuter or so)
[]
```
and then it's stuck at above box symbol.
How to debug?
system
Closed
January 7, 2019, 10:46am
9
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.