针对pip install 安装包下载慢的问题,主要pip install直接安装是从国外拉取安装包。
解决办法,加国内镜像,比如百度 https://mirror.baidu.com/pypi/simple
pip install lac -i https://mirror.baidu.com/pypi/simple
比如清华镜像:https://pypi.tuna.tsinghua.edu.cn/simple
pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
如何加快pip下载的速度
pip 之所以慢,是因为它默认使用的国外的统一的下载源,所以要想加快pip的下载速度,可行的办法就是切换下载源为国内,国内一些大公司也提供了对应的竞相网站。
国内镜像网站
-
豆瓣(douban) http://pypi.douban.com/simple/
使用方法
pip install [包名] -i [ftp站名地址] --trusted-host [ftp站点名]
- 1
以安装numpy为例,如果使用 阿里的源可以这样输入命令
pip install numpy -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
- 1
如果使用 豆瓣的源可以这样输入命令
pip install numpy -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
- 1
其他类似…
如果想一劳永逸或许可以这样
alias pyinstall='pip install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com '
- 1
将这个alias 放到 /etc/bash.bashrc 或者~/.bashrc中 以后调用pyinstall 时就可以不再加后面的参数,而且也省了 install 这个单词。