logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Conda Env - Manage Environments | Online Free DevTools by Hexmos

Manage Conda environments with Conda Env. Create, update, remove and list environments efficiently. Free online tool, no registration required.

conda-env

Manage conda environments. More information: https://docs.conda.io/projects/conda/en/latest/commands/env/index.html.

  • Create an environment from an environment file (YAML, TXT, etc.):

conda env create {{[-f|--file]}} {{path/to/file}}

  • Delete an environment and everything in it:

conda env remove {{[-n|--name]}} {{environment_name}}

  • Update an environment based on an environment file:

conda env update {{[-f|--file]}} {{path/to/file}} --prune

  • List all environments:

conda env list

  • View environment details:

conda env export

  • List environment variables:

conda env config vars list

  • Set environment variables:

conda env config vars set {{my_var}}={{value}}

See Also