How do I use easy_install and buildout when pypi is down?

后端 未结 7 1486
死守一世寂寞
死守一世寂寞 2021-02-01 23:26

I am using buildout to automatically download and setup the many dependencies of my Plone installation. buildout more or less uses easy_install to download and install a bunch o

7条回答
  •  旧巷少年郎
    2021-02-01 23:55

    Configure index in buildout.cfg, e.g.

    [buildout]
    index = http://a.pypi.python.org/
    find-links = 
    

    More mirrors on : http://www.pypi-mirrors.org/

提交回复
热议问题