28

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

Jorge Castro
  • 70,934
  • 124
  • 466
  • 653
infoquad
  • 857
  • 3
  • 10
  • 14
  • 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

47

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
  • 29,975
  • 14
  • 64
  • 77
sagarchalise
  • 23,668
  • 12
  • 72
  • 85