show/hide this revision's text 3 added the result which was given as an answer

Hi,

I'm new to Python, reason I'm learning it right now is because of the Django framework. I have been a Perl programmer for a number of years and I'm so used to Perl's tools. One of the things that I really miss is Perl's CPAN and its tools. Is there anything equivalent in Python? I would like to be able to search, install and maintain Python modules as easy as CPAN. Also, a system that can handle dependencies automatically. I tried to install a module in Python by downloading a zip file from a website, unzipped it, then do:

sudo python setup.py install

but it's looking for another module. Now, lazy as I am, I don't like chasing dependencies and such, is there an easy way? Thanks.

sammydc says:

I installed pip and it's working now. Thanks very much llimllib.

show/hide this revision's text 2 deleted 1 characters in body

Hi,

I'm new to pythonPython, reason I'm learning it right now is because of the Django framework. I have been a perl Perl programmer for a number of years and I'm so used to Perl's tools. One of the things that I really miss is Perl's CPAN and it's its tools. Is there anything equivalent in Python? I would like to be able to search, install and maintain python Python modules as easy as CPAN. Also, a system that can handle dependencies automatically. I tried to install a module in Python by downloading a zip file from a website, unzipped it, then do:

sudo python setup.py install

but it's looking for another module. Now, lazy as I am, I don't like chasing dependencies and such, is there an easy way? Thanks.

show/hide this revision's text 1

For Python programmers, is there anything equivalent to Perl's CPAN?

Hi,

I'm new to python, reason I'm learning it right now is because of the Django framework. I have been a perl programmer for a number of years and I'm so used to Perl's tools. One of the things that I really miss is Perl's CPAN and it's tools. Is there anything equivalent in Python? I would like to be able to search, install and maintain python modules as easy as CPAN. Also, a system that can handle dependencies automatically. I tried to install a module in Python by downloading a zip file from a website, unzipped it, then do:

sudo python setup.py install

but it's looking for another module. Now, lazy as I am, I don't like chasing dependencies and such, is there an easy way? Thanks.