-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
  • 8,084
  • 8
  • 48
  • 62
SachinJose
  • 8,462
  • 4
  • 42
  • 63

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,269
  • 3
  • 26
  • 29
0

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

Danil Speransky
  • 29,891
  • 5
  • 68
  • 79