32 |
33 | Here is a list of the PyPI mirrors and the last time they were updated
39 || Mirror | Location | # of Packages | Last update | Age | Response Time (ms)* | Status |
|---|---|---|---|---|---|---|
| {{item.mirror}} | 55 |{{item.location}} | 56 |{{item.num_packages}} | 57 |{{item.last_update}} | 58 |{{item.time_diff_human}} 59 | {% if item.age_list %}{% endif %} 60 | | 61 |{{item.response_time}} 62 | {% if item.resp_list %} {% endif %} 63 | | 64 |{% if item.status == 'Green' %} 65 | Fresh 66 | {% elif item.status == "Yellow" %} 67 | Aging 68 | {% elif item.status == "Red" %} 69 | Old 70 | {% else %} 71 | N/A 72 | {% endif %} 73 | |
| * Response time from Virginia, US | ||||||
| Age | Status |
|---|---|
| age < 1 hour | Fresh |
| 1 hour < age < 1 day | Aging |
| age > 1 day | Old |
Single Usage:
97 |
pip install -i http://<mirror>/simple <package>98 |
Global settings:
99 | Add ~/.pip/pip.conf that includes:
100 |
101 | [global] 102 | index-url = http://<mirror>/simple103 | 104 |