Answers for "conda create"

49

conda create environment

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

list conda environments

conda info --envs

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

conda create environment python 3.6

conda create -n myenv python=x.x
Posted by: Guest on May-03-2020
15

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
4

How do I set Conda to activate the base environment by default?

conda config --set auto_activate_base true
Posted by: Guest on August-11-2020

Python Answers by Framework

Browse Popular Code Answers by Language