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

后端 未结 7 1568
死守一世寂寞
死守一世寂寞 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条回答
  •  萌比男神i
    2021-02-02 00:13

    You can also use a mirror. Put this in the "[global]" section of "~/.pip/pip.conf":

    index-url = http://d.pypi.python.org/simple/
    

    This is a recent feature as announced here.

提交回复
热议问题