Answers for "how to create a conda environment file"

50

conda create environment

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

conda export environment

# conda export environment.yml
conda env export > environment.yml

# conda create environment from file (Same environment name)
conda env create -f environment.yml
Posted by: Guest on February-09-2021
0

how to create an environment in conda

$ conda create --name envname
$ conda activate envname
Posted by: Guest on July-02-2021
1

conda create new env

conda create -n 
	NAME
		python=3.8
Posted by: Guest on January-13-2021

Code answers related to "how to create a conda environment file"

Python Answers by Framework

Browse Popular Code Answers by Language