For Python programmers, is there anything equivalent to Perl's CPAN? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T05:08:05Z http://stackoverflow.com/feeds/question/410163 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/410163/for-python-programmers-is-there-anything-equivalent-to-perls-cpan 14 For Python programmers, is there anything equivalent to Perl's CPAN? sammydc 2009-01-04T00:30:37Z 2009-03-27T17:24:02Z <p>Hi,</p> <p>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:</p> <p><code>sudo python setup.py install</code></p> <p>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.</p> <p><em>sammydc says:</em></p> <p>I installed pip and it's working now. Thanks very much llimllib.</p> http://stackoverflow.com/questions/410163/for-python-programmers-is-there-anything-equivalent-to-perls-cpan/410167#410167 1 Answer by Jimmy2Times for For Python programmers, is there anything equivalent to Perl's CPAN? Jimmy2Times 2009-01-04T00:33:06Z 2009-01-04T00:33:06Z <p>Yes, it's called <a href="http://peak.telecommunity.com/DevCenter/EasyInstall" rel="nofollow">EasyInstall</a></p> http://stackoverflow.com/questions/410163/for-python-programmers-is-there-anything-equivalent-to-perls-cpan/410170#410170 20 Answer by llimllib for For Python programmers, is there anything equivalent to Perl's CPAN? llimllib 2009-01-04T00:34:17Z 2009-01-04T00:34:17Z <p>sammy, have a look at <a href="http://pip.openplans.org/" rel="nofollow">pip</a>, which will let you do "pip install foo", and will download and install its dependencies (as long as they're on <a href="http://pypi.python.org/" rel="nofollow">PyPI</a>). There's also <a href="http://peak.telecommunity.com/DevCenter/EasyInstall" rel="nofollow">EasyInstall</a>, but pip is intended to replace that.</p> http://stackoverflow.com/questions/410163/for-python-programmers-is-there-anything-equivalent-to-perls-cpan/410672#410672 -1 Answer by sammydc for For Python programmers, is there anything equivalent to Perl's CPAN? sammydc 2009-01-04T08:36:26Z 2009-01-04T08:36:26Z <p>I installed pip and it's working now. Thanks very much llimllib.</p> http://stackoverflow.com/questions/410163/for-python-programmers-is-there-anything-equivalent-to-perls-cpan/412211#412211 6 Answer by alif for For Python programmers, is there anything equivalent to Perl's CPAN? alif 2009-01-05T03:32:27Z 2009-01-05T03:40:53Z <p>It might be useful to note that pip and easy_install both use the <a href="http://pypi.python.org/pypi" rel="nofollow">Python Package Index (PyPI)</a>, sometimes called the "Cheeseshop", to search for packages. Easy_install is currently the most universally supported, as it works with both setuptools and distutils style packaging, completely. See <a href="http://www.b-list.org/weblog/2008/dec/14/packaging/" rel="nofollow">James Bennett's commentary</a> on python packaging for good reasons to use pip, and <a href="http://blog.ianbicking.org/2008/12/14/a-few-corrections-to-on-packaging/" rel="nofollow">Ian Bicking's reply</a> for some clarifications on the differences.</p> http://stackoverflow.com/questions/410163/for-python-programmers-is-there-anything-equivalent-to-perls-cpan/653629#653629 1 Answer by Denis for For Python programmers, is there anything equivalent to Perl's CPAN? Denis 2009-03-17T10:09:16Z 2009-03-27T17:24:02Z <p>If you do use <code>easy_install</code>, I'd suggest installing packages by doing..</p> <pre><code>easy_install -v -Z package_name | tee date-package.log </code></pre> <p><code>-Z</code> (short for <code>--always-unzip</code>) unzips the <code>.egg</code> files to directories so you can then..</p> <pre><code>less *.egg/EGG-INFO/requires.txt less *.egg/EGG-INFO/PKG-INFO egrep '^(Name|Version|Sum|...)' *.egg/EGG-INFO/PKG-INFO </code></pre> <p>On Sammy's original question, a couple of package indexes other than PyPI are:<br /> <a href="http://www.scipy.org/Topical%5FSoftware" rel="nofollow">Scipy</a> and <a href="http://docs.scipy.org/scipy/docs/scipy" rel="nofollow">Scipy docs</a> for scientific computing<br /> <a href="http://www.ohloh.net/tags/python" rel="nofollow">ohloh</a> with code metrics.</p>