Description Usage Arguments Examples
Wrapper function of 'conda env create', create an environment based on an environment file
1 2 | conda.env.create(env_name = "", env_file = "", env_path = "",
params = "", ...)
|
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 |
1 2 3 4 5 6 7 8 9 10 | ## 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')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.