Virtualenv is usefull to create isolated environments for Python projects. Install pip sudo apt-get install python-pip Install virtualenv sudo pip install virtualenv Create a dir to store your virtualenvs mkdir ~/.virtualenvs At this point you are all set to use virtualenv with the standard commands. However, I prefer to use …