Learn R Programming

BioInstaller (version 0.3.7)

conda.env.create: Wrapper function of 'conda env create', create an environment based on an environment file

Description

Wrapper function of 'conda env create', create an environment based on an environment file

Usage

conda.env.create(env_name = "", env_file = "", env_path = "",
  params = "", ...)

Arguments

env_name

Name of environment

env_file

Environment definition file (default: environment.yml)

env_path

Full path to environment prefix

params

Extra command line parameters of conda

...

Parameters pass to conda

Examples

Run this code
# NOT RUN {
  conda.env.create(params = 'vader/deathstar')
  conda.env.create(env_name = 'name')
  conda.env.create(env_file = '/path/to/environment.yml')
  conda.env.create(env_name = 'deathstar',
                   env_file = '/path/to/requirements.txt')
  conda.env.create(env_file = '/path/to/requirements.txt',
  env_path = '/home/user/software/deathstar')
# }

Run the code above in your browser using DataLab