how to create a new environment in anaconda code example
Example 1: conda create environment
conda create -n myenv python=3.6
Example 2: anaconda create environment python version
conda create -n myenv python=3.6
Example 3: how to make a conda environment
conda create --name myenv
#to activate environment:
conda activate myenv
Example 4: remove conda environment
conda remove --name myenv --all
Example 5: create new env in anaconda
conda create --name myenv