在 Windows 下安装 Python

浏览器打开 https://www.python.org/downloads/ 直接下载安装即可。
需要注意的一点是,如果想将 Python 添加到环境变量,那么在安装过程中,可以勾选把 Python 添加环境变量的选项,如果没有勾选的话,那么后续就需要自己手动添加到系统的环境变量去。

Python 使用国内镜像源加速

国内镜像源列表

临时使用

pip install 包名 -i https://pypi.tuna.tsinghua.edu.cn/simple

信任HTTP协议:

pip install 包名 -i http://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn

持久化使用 - Windows

添加配置文件:

在对应的配置文件中写入如下内容:

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn

验证是否设置成功:

pip config list