-1

Is there any tool for installing external python modules from a central repository( like cpan for perl). I installed MySQLdb module using yum.

Vadim Kotov
  • 7,766
  • 8
  • 46
  • 61
SachinJose
  • 8,274
  • 4
  • 40
  • 62

2 Answers2

1

Check out pip and the python package index: https://pypi.python.org/pypi

You can package up your own modules and upload them to a private pip server as well.

Matt Koskela
  • 5,139
  • 3
  • 25
  • 28
0

There is a pip - tool for managing Python Packages (https://pypi.python.org/pypi/pip).

Danil Speransky
  • 28,931
  • 5
  • 62
  • 77