为什么要换源?
Python第三方库下载默认镜像源在国外,因为特殊的原因在国内的你我利用这个镜像源往往速度会非常地慢,因此为了提速将这个默认镜像源换成国内的镜像源是非常有必要的。
镜像源的种类有哪些?
国外镜像源------官方
国内镜像源------常用
|--------|------------------------------------------|
| 清华镜像源 | https://pypi.tuna.tsinghua.edu.cn/simple |
| 阿里云镜像源 | http://mirrors.aliyun.com/pypi/simple |
| 中科大镜像源 | https://pypi.mirrors.ustc.edu.cn/simple |
换源的方法有哪些?
- 全局替换------一劳永逸
win+R键进入shell终端,在shell终端输入以下命令
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
- 单次替换
在shell终端输入以下命令
pip install -i <镜像源> <第三方库名>
例如:此次安装pandas第三方库是在清华镜像源中拉取的pandas
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas