赞
踩
Python切换pip 或 pip3安装源的为国内源方法,pip是Python中非常方便易用的安装包管理器,但是在实际下载安装包的时候总是连接不上或者下载速度特别慢, pypi.python.org就是其中一个。用pip3下载第三方库速度实在是慢到令人难以接受的地步,几十k每秒,所以打算给它换个国内的源。
mkdir ~/.pip
vim ~/.pip/pip.conf
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn
国内其他pip源:
清华:https://pypi.tuna.tsinghua.edu.cn/simple
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/
临时给pip 或 pip3换源。
命令格式:sudo pip3 install 包名 -i 镜像源url
比如在用pip3安装Python模块matplotlib的时候,下载速度只有是几k
sudo pip3 install matplotlib -i https://pypi.douban.com/simple/
之后下载速度提到了1-2MB/s左右。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。