Anyway, open up the terminal and type this:
sudo apt-get install python-setuptoolsThat command will install python-setuptools so that we can make use of easy-install, which in turn, is what we're going to use to install virtualenv. :3
Wait for the package to finish installing and then type this:
sudo easy-install virtualenvThat command obviously installs virtualenv. Mewhohoho~
And that's it for the installation! Now, we're going to start using virtualenv.
Make a directory for your virtualenv. Name it anything.
mkdir myProjectNext, cd to that directory and create your virtualenv.
cd myProj
virtualenv myEnvYour virtualenv is now created. To activate it, simply type:
source myenv/bin/activateYou are now inside your virtualenv, and you can now start installing whatever package you need to create your project, application, etc. :3