28

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

Jorge Castro
  • 73,907
infoquad
  • 857
  • Please don't use easy_install if you can use pip, which you can consider an improved Python package manager. – gertvdijk Sep 25 '14 at 14:20

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
  • 31,049
sagarchalise
  • 24,306