安装tb-lightly失败:

ERROR: Could not find a version that satisfies the requirement tb-nightly (from torchreid) (from versions: none)
ERROR: No matching distribution found for tb-nightly

说明,我们的pip源中没有对应的“tb-nightly”依赖包。查看pip配置

python -m pip config list


 显示使用的是清华源

global.index-url='https://pypi.tuna.tsinghua.edu.cn/simple'

更换为阿里源:

python -m pip config set global.index-url https://mirrors.aliyun.com/pypi/simple

再次查看pip配置:

python -m pip config list
# global.index-url='https://mirrors.aliyun.com/pypi/simple'

再次安装tb-nightly就可以了

下载成功后,希望再转回清华源

python -m pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple


————————————————
版权声明:本文为CSDN博主「木之希」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_46455141/article/details/131353266