Ubuntu: how to install easy_install
So you need easy_install for something on Ubuntu? Installing it is very easy, just follow the instructions below.
[code]
$ sudo apt-get install python-setuptools
[/code]
And that's it! Yes, that's all you need to do and you will have easy_install available at the command prompt.
In case you are wondering, easy_install is a Python module which comes as a part of the Python se ...