2023-02-10
Using Default Pypi.Org/Simple Index

packages like EdgeGPT may update overnight. mirrors won’t keep up. you need to fetch from the official package index.


to set the index:

1
2
pip set global.index-url https://pypi.org/simple

to use the index temporarily:

1
2
pip install <package> -i https://pypi.org/simple

Read More