正文
#查看pip版本
D:\dev-env\Python3913>pip --version
pip 24.3.1 from D:\dev-env\Python3913\lib\site-packages\pip (python 3.9)
#查看pip配置文件
D:\dev-env\Python3913>pip config list
#配置文件空白
D:\dev-env\Python3913>
#直接设置全局pip源
D:\dev-env\Python3913>pip config set global.index-url http://mirrors.aliyun.com/pypi/simple/
Writing to C:\Users\xiaoyao\AppData\Roaming\pip\pip.ini
#再次查看配置文件
D:\dev-env\Python3913>pip config list
global.index-url='http://mirrors.aliyun.com/pypi/simple/'
常用pip源
源名 | 地址 |
---|---|
阿里云 | http://mirrors.aliyun.com/pypi/simple/ |
清华大学 | https://pypi.tuna.tsinghua.edu.cn/simple/ |
中国科技大学 | https://pypi.mirrors.ustc.edu.cn/simple/ |
Python官方 | https://pypi.python.org/simple/ |
v2ex | http://pypi.v2ex.com/simple/ |