...
When prompted Proceed ([y]/n)?
, press y
to proceed.
Additional notes:
The conda create
command can be modified to fit your needs. Below are a few additional examples:
Additional example 1: Install packages when creating an environment:
Code Block |
---|
conda create -n another-env python=3.8 numpy requests |
Additional example 2: Specify the versions of the packages:
Code Block |
---|
conda create -n another-env python=3.7 numpy=1.16.1 requests=2.19.1 |
Additional example 3: Create a conda environment from an environment.yml file:
Code Block |
---|
conda env create -f environment.yml |
Info |
---|
For more examples of creating conda environments, please see the section "Managing environments" in the Conda User Guide. |
...
When prompted Proceed ([y]/n)?
, press y
to proceed.
Additional notes:
You can create an R conda environment with just the
r-base
package, like so:conda create -n r-env r-base
However, the
r-essentials
package includes approximately 80 of the most popular packages for R, so it is convenient to install ther-essentials
bundle rather than installing each individual package later.Many R packages are available to install with conda, but not all. The latest index of R packages built by Anaconda, Inc. can be found on Anaconda Cloud or at http://repo.anaconda.com/pkgs/r/
For more information about using R with conda, please see Using R language with Anaconda and R language packages for Anaconda in the Anaconda documentation.
For more examples of creating conda environments, please see "Managing environments" in the Conda User Guide.
...