0% found this document useful (0 votes)
9 views1 page

Envrio

The document provides commands for managing Conda environments, including creating a new environment, removing an existing environment, and creating an environment by cloning the base environment. It also includes a command to install JupyterLab from the conda-forge channel. These commands are essential for setting up and managing Python environments using Conda.

Uploaded by

Logess War
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views1 page

Envrio

The document provides commands for managing Conda environments, including creating a new environment, removing an existing environment, and creating an environment by cloning the base environment. It also includes a command to install JupyterLab from the conda-forge channel. These commands are essential for setting up and managing Python environments using Conda.

Uploaded by

Logess War
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

crecreating environment

conda create -n ENV_NAME


----------------------------------
removing environment
conda env remove -n ENV_NAME
----------------------------------
creating environment using base clone
conda create -n ENV_NAME --clone base
----------------------------------
conda install -c conda-forge jupyterlab
----------------------------------

You might also like