how to create a new environment in anaconda at a folder code example
Example 1: anaconda create new environment
conda create -n myenv python=3.6
Example 2: make a new environment conda
conda activate test_env
conda create -n myenv python=3.6
conda activate test_env