creating a virtual environment anaconda code example
Example 1: anaconda create environment python version
conda create -n myenv python=3.6
Example 2: create a virtual environment python conda
conda create -n yourenvname python=x.x anaconda
Example 3: create conda env with specific python version
conda create -n "myenv" python=3.3.0
Example 4: how to create a virtual environment in anaconda
conda create -n env_name python=x.x anaconda
Example 5: install virtualenv conda
// virtualenv
conda install -c anaconda virtualenv
// virtualenvwrapper
conda install -c eumetsat virtualenvwrapper
Example 6: how to create virtual environment in anaconda
conda create --name myenv