On Wed, Mar 3, 2010 at 3:23 AM, Harouff, Paul <[email protected]> wrote: > Does anyone know what’s going on with the PyPI server? I’ve never seen it > this slow. > > It took me two hours to download BlueBream, PasteScripts and PasteDeploy. > Now downloading Paste-1.7.2 is stuck at 28%. Easy_install for these should > have only taken about 10-15 minutes.
Sometime PyPI is very slow. For serious use it is better to create a local PyPI. Here is manual method to create PyPI: 1. mkdir pypi 2. cd pypi 3. mkdir zope.interface 4. cd zope.interface 5. wget -c URL-to-download-zope.interface 6. cd .. 7. Repeat steps 3 to 6 for other packages 8. python -m SimpleHTTServer # or use Apache To install any package: easy_install -i http://localhost:8000/ zope.interface There are some tools available: https://edge.launchpad.net/pypi-mirror Regards, Baiju M _______________________________________________ bluebream mailing list [email protected] https://mail.zope.org/mailman/listinfo/bluebream
