使用国内镜像源安装windows下python的pip包

我们安装各类pip的包时,网速会很慢,可能会下载很久。

1.我们可以使用镜像源去下载.whl文件再安装

这个方式有可能也会花很长时间

2.使用国内源pip安装(推荐)

这个方式是我平时使用的方式,速度比较块

国内源:

清华:https://pypi.tuna.tsinghua.edu.cn/simple

阿里云:http://mirrors.aliyun.com/pypi/simple/

中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/

华中理工大学:http://pypi.hustunique.com/

山东理工大学:http://pypi.sdutlinux.org/ 

豆瓣:http://pypi.douban.com/simple/

传统使用方式(opencv-python举例):

        在cmd中输入pip install opencv-python 速度会比较慢

使用国内源方式(opencv-python举例):

 在cmd中输入 pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple scrapy

速度会快很多

pip install 库名 -i 镜像源地址

你可能感兴趣的:(python,开发语言)