目录
推荐镜像源网址:
方法一:手动换源
方法二:命令提示符指令换源
临时换源
推荐镜像源网址:
阿里云:Simple Indexhttp://mirrors.aliyun.com/pypi/simple/
华为云:Index of python-local https://mirrors.huaweicloud.com/python/ 清华云:Simple Indexhttps://pypi.tuna.tsinghua.edu.cn/simple/
方法一:手动换源
找到系统盘下 C:\Users\ 用户名 \AppData\Roaming , APPData 可能是隐藏文件,需要将隐藏关闭;
查看在 Roaming 文件夹下有没有一个 pip 文件夹,如果没有创建一个;
进入 pip 文件夹,创建一个 pip.ini 文件;
使用记事本的方式打开 pip.ini 文件,写入:
[global]
index-url=http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
方法二:命令提示符指令换源
win + R打开窗口输入cmd,点击确定进入命令提示符
在命令提示符中输入以下指令:
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
点击回车完成换源
临时换源
pip install 库名 -i 镜像网址