ERROR: No matching distribution found for tb-nightly

简介: ERROR: No matching distribution found for tb-nightly

问题描述

安装tb-lightly失败: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'


更换镜像源泉:

方案1:临时更换为阿里源(推荐):

python -m pip install tb-nightly -i https://mirrors.aliyun.com/pypi/simple


方案2:替换全局源:

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


使用方案1重新安装,可以看到安装成功:

参考:http://t.csdnimg.cn/PrNF5

目录
相关文章
|
IDE PyTorch 网络安全
“Could not find suitable distribution for Requirement.parse(‘XXXX‘)”的问题
“Could not find suitable distribution for Requirement.parse(‘XXXX‘)”的问题
354 0
ERROR: No matching distribution found for gradio>=3.23
该博客文章提供了解决使用pip安装gradio版本3.23时出现的"No matching distribution found"错误的步骤,包括从官网下载相应的whl文件并手动安装。
ERROR: No matching distribution found for gradio>=3.23
|
3月前
|
Python
ERROR: Could not find a version that satisfies the requirement thop (from versions: none) ERROR: No
这篇文章介绍了在尝试安装`thop`包时遇到的"No matching distribution found"错误,并提供了通过直接从GitHub源码安装`thop`的解决方法。
ERROR: Could not find a version that satisfies the requirement thop (from versions: none) ERROR: No
|
5月前
|
关系型数据库 MySQL 数据库
Error: Table ‘bWAPP.users‘ doesn‘t exist
Error: Table ‘bWAPP.users‘ doesn‘t exist
|
Linux
ERROR: 2 matches found based on name: network product-server_default is ambiguous
ERROR: 2 matches found based on name: network product-server_default is ambiguous
162 0
|
前端开发 开发工具 git
|
Java
Syntax error, insert "Dimensions" to complete TypeArgument
版权声明:本文为 testcs_dn(微wx笑) 原创文章,非商用自由转载-保持署名-注明出处,谢谢。 https://blog.csdn.net/testcs_dn/article/details/78248391 ...
1532 0
|
安全 Java C++
Note
开发分布式应用distributed;强类型机制 异常处理exception except 垃圾的自动收集java对通过网络下载的类具有安全防范机制通过网络下载的类有一个安全防范机制;classLoader;分配不同的名字空间以防替代本地的同名类,字节代码检查,并提供安全管理机制SecurityMa...
1069 0
Multiple network matches found for name 'selfservice', use an ID to be more specific.报错
今天正在做openstack实例时输入neutron subnet-create --name selfservice   --dns-nameserver 114.114.114.114 --gateway 192.
1471 0