python离线安装库和添加多个安装源



修改安装源(主要是国内源更方便):
在C:\Users\用户名\建立文件夹pip,然后在里面建立文件pip.ini,文件内容如下(豆瓣源,其它源自己选):

[global]
index-url = http://pypi.douban.com/simple/
extra-index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=pypi.douban.com

ps:http就需要添加trusted-host,https就不需要;extra-index-url只能存在一个,存在多个会报错;trusted-host存在多个好像是只有第一个会生效

国内源:
阿里云 https://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) https://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 https://pypi.mirrors.ustc.edu.cn/simple/

离线下载安装包,用于公司内网安装:

pip download 模块名 -d 绝对路径

例如:

pip download scapy -d D:\Users\songqiu\Desktop

如果提示不信任源,就加上--trusted-host 源域名
例如:

pip download scapy -d D:\Users\songqiu\Desktop --trusted-host pypi.douban.com

下载到本地后,安装方法为:
解压,执行python setup.py install