Answers for "create conda environment"

45

conda create environment

conda create -n myenv python=3.6
Posted by: Guest on October-01-2020
22

list conda environments

conda info --envs

conda env list
Posted by: Guest on March-25-2020
13

anaconda remove environment

conda env remove -n ENV_NAME
Posted by: Guest on May-17-2020
6

conda create environment based on requirements.txt

# using pip
pip install -r requirements.txt

# using Conda
conda create --name <env_name> --file requirements.txt
Posted by: Guest on September-09-2020
3

conda create environment without packages

conda create --name myenv python=3.8 --no-default-packages
Posted by: Guest on August-23-2020
1

create conda environment

conda create -n <my_env> python=3.8
#Remember to install "ipykernel" so you can use jupyter notebook.
conda install ipykernel
Posted by: Guest on September-22-2021

Code answers related to "create conda environment"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language