Use conda as enviornment manager, instead of virtualenv (due to simlink issues between windows/vagrant):
cd /usr/local/src/
# wget https://repo.continuum.io/archive/Anaconda2-4.2.0-Linux-x86_64.sh # Full install
sudo wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh
bash Miniconda2-latest-Linux-x86_64.sh
# edit ~/.bash_profile to add/remove the miniconda directory from your PATH environment variableExample enviornment creation:
conda create -n py3k anaconda python=3
conda create -n myenv pythonChange environments:
source activate py3k
source deactivateWhile active, see the list of installed packages in the environment with the conda list command.
Remove environments:
conda remove --name myenv --all