# 安装包出现错误
$ pip install -r requirements.txt -i http://pypi.douban.com/simple/
ERROR: Could not find a version that satisfies the requirement pbr (from versions: none)
ERROR: No matching distribution found for pbr
# 解决,信任该源
$ pip install pbr --trusted-host pypi.douban.com
# 安装成功
标签:douban,pbr,Python,pypi,报错,pip
From: https://www.cnblogs.com/abeelan/p/17203211.html