28

Can I use easy_install on Ubuntu 10.10? If yes, then how?

Jorge Castro
  • 73,717
infoquad
  • 857

1 Answers1

48

easy_install is the part of python-setuptools. First install python-setuptools

sudo apt-get install python-setuptools

Then you can use easy_install to install from pypi

You need to use sudo with easy_install i.e.

sudo easy_install module_name

eg: sudo easy_install py2app

Or there is another module python-pip which will also help in installing from pypi with command

sudo pip install module_name

eg: sudo pip install py2app

aneeshep
  • 30,949
sagarchalise
  • 24,306