For Python programmers, is there anything equivalent to Perl's CPAN? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T05:08:05Zhttp://stackoverflow.com/feeds/question/410163http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/410163/for-python-programmers-is-there-anything-equivalent-to-perls-cpan14For Python programmers, is there anything equivalent to Perl's CPAN?sammydc2009-01-04T00:30:37Z2009-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#4101671Answer by Jimmy2Times for For Python programmers, is there anything equivalent to Perl's CPAN?Jimmy2Times2009-01-04T00:33:06Z2009-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#41017020Answer by llimllib for For Python programmers, is there anything equivalent to Perl's CPAN?llimllib2009-01-04T00:34:17Z2009-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-1Answer by sammydc for For Python programmers, is there anything equivalent to Perl's CPAN?sammydc2009-01-04T08:36:26Z2009-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#4122116Answer by alif for For Python programmers, is there anything equivalent to Perl's CPAN?alif2009-01-05T03:32:27Z2009-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#6536291Answer by Denis for For Python programmers, is there anything equivalent to Perl's CPAN?Denis2009-03-17T10:09:16Z2009-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>