generate conda environment file code example
Example 1: conda create environment
conda create -n myenv python=3.6
Example 2: create an environment in conda
conda create --name myenv
Example 3: conda create environment from file
conda env create -f environment.yml
Example 4: conda create new env
conda create -n
NAME
python=3.8