
conda
List of commands for conda:
-
conda:ai:7f478 Creates a new conda environment named 'mamba_env'$ conda create --name mamba_envtry on your machineexplain this command
-
conda:ai:e1a77 Delete mamba environment called microscam$ conda env remove --name microscamtry on your machineexplain this command
-
conda:ai:e87cc delete mamba envs$ conda env remove --all -n mambatry on your machineexplain this command
-
conda:tldr:45453 conda: Delete an environment (remove all packages).$ conda remove --name ${environment_name} --alltry on your machineexplain this command
-
conda:tldr:58386 conda: Load an environment.$ conda activate ${environment_name}try on your machineexplain this command
-
conda:tldr:892c2 conda: List currently installed packages in current environment.$ conda listtry on your machineexplain this command
-
conda:tldr:93b0a conda: Delete unused packages and caches.$ conda clean --alltry on your machineexplain this command
-
conda:tldr:b5d8f conda: Unload an environment.$ conda deactivatetry on your machineexplain this command
-
conda:tldr:e8081 conda: Install packages into the current environment.$ conda install ${python=3-4 numpy}try on your machineexplain this command
-
conda:tldr:f53b7 conda: List all environments.$ conda info --envstry on your machineexplain this command