easy_install is the minimal CPAN for Python. Get it from http://peak.telecommunity.com/DevCenter/EasyInstall
easy_install works with PyPI and Python distutils to install Python programs from the Internet. Basically it scans PyPI for a project using a name, pulls in the metadata in the PKG-INFO format (if found). If the project defines a download URL, it is automatically fetched and installed using distutils. Typical use of easy_install is, $ easy_install <package> However if you already know the download URL of a project you can do this... $ easy_install <package URL> --Anand On Dec 19, 2007 4:44 PM, Shivraj M S <[EMAIL PROTECTED]> wrote: > Is there any perl CPAN like tool in python which can install python modules > from a python shell for its version. > (pypi didn't help as there was some download error couldn't get relevant url > to download sources) > > > > > ________________________________ > Chat on a cool, new interface. No download required. Click here. > _______________________________________________ > BangPypers mailing list > [email protected] > http://mail.python.org/mailman/listinfo/bangpypers > > -- -Anand _______________________________________________ BangPypers mailing list [email protected] http://mail.python.org/mailman/listinfo/bangpypers
