HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

conda run — Run an executable command in a conda environment. More information: <https://docs.conda.io/projects/

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandruncondaexecutableclienvironmentconda run

Problem

How to use the conda run command: Run an executable command in a conda environment. More information: <https://docs.conda.io/projects/conda/en/latest/commands/run.html>.

Solution

conda run — Run an executable command in a conda environment. More information: <https://docs.conda.io/projects/conda/en/latest/commands/run.html>.

Run a command in the currently active environment:
conda run {{command}}


Target an environment by name:
conda run {{[-n|--name]}} {{environment_name}} {{command}}


Target an environment by its path (i.e. prefix):
conda run {{[-p|--prefix]}} {{path/to/env}} {{command}}

Code Snippets

Run a command in the currently active environment

conda run {{command}}

Target an environment by name

conda run {{[-n|--name]}} {{environment_name}} {{command}}

Target an environment by its path (i.e. prefix)

conda run {{[-p|--prefix]}} {{path/to/env}} {{command}}

Context

tldr-pages: common/conda run

Revisions (0)

No revisions yet.