anaconda add virtualenv code example
Example 1: create a virtual environment python conda
conda create -n yourenvname python=x.x anaconda
Example 2: conda create environment python 3
conda create -n [env-name] python
Example 3: install virtualenv conda
// virtualenv
conda install -c anaconda virtualenv
// virtualenvwrapper
conda install -c eumetsat virtualenvwrapper