标签:requests 装包 glob 阿里 服务器 阿里云 tps linu window
使用python必然离不开pip这一强大的包管理工具.但是由于pip的官方源在国外,所以造成安装包速度要么特别慢或者根本就安装不了,所以修改python源是安装包时必备的技能临时使用
使用阿里源安装requests
pip install requests -i https://mirrors.aliyun.com/pypi/simple
永久修改:
自动修改(推荐)
pip config set global.trusted-host mirrors.aliyun.com
pip config set global.index-url https://mirrors.aliyun.com/simple
手动修改
linux/mac (没有就创建一个)
vi ~/.pip/pip.conf
[global]
trusted-host=mirrors.aliyun.com
index-url=https://mirrors.aliyun.com/pypi/simple/
[global]
trusted-host=mirrors.aliyun.com
index-url=https://mirrors.aliyun.com/pypi/simple/
注意:为了一些不必要的麻烦建议把trusted-host也同步设置.
常用源:
官方 https://pypi.python.org/simple/
阿里云
http://mirrors.aliyun.com/pypi/simple/
豆瓣
http://pypi.douban.com/simple/
清华
https://pypi.tuna.tsinghua.edu.cn/simple
个人喜好,因为管理的服务器大多是阿里云,所以安装包时第一步就是先设置源为阿里,不光因为速度快,还因为走的内网不花费流量哟.
that‘s all
标签:requests 装包 glob 阿里 服务器 阿里云 tps linu window
原文地址:https://blog.51cto.com/rainbird/2481124