Forrest logo
back to the mamba tool

mamba:tldr:41c66

mamba: List all environments.
$ mamba info --envs
try on your machine

The command "mamba info --envs" is used to display information about the conda environments created in your system using the mamba package manager.

Here is a breakdown of each part of the command:

  • "mamba" refers to the mamba package manager, which is a fast and efficient open-source software package manager that can be used as an alternative to conda.
  • "info" is the command used to display information about the requested object, in this case, the environments.
  • "--envs" is an optional argument that specifies to display information about the existing environments.

When you execute the "mamba info --envs" command, it will retrieve and display a list of all the environments created with mamba or conda, along with their respective paths and other relevant information. It helps you identify the existing environments and manage them accordingly.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the mamba tool