conda create new environment with specific python version and packages code example
Example 1: create a virtual environment python conda
conda create -n yourenvname python=x.x anaconda
Example 2: create conda env with specific python version
conda create -n "myenv" python=3.3.0