create a virtual environment python conda
conda create -n yourenvname python=x.x anaconda
Here is what the above code is Doing:
1. Create a new environment called yourenvname
2. Install Python version x.x
3. Install all the packages in the Anaconda distribution