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‘)”的问题
381 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
|
6月前
|
Python
【已解决】WARNING: Ignoring invalid distribution xxx
【已解决】WARNING: Ignoring invalid distribution xxx
|
6月前
|
关系型数据库 MySQL 数据库
Error: Table ‘bWAPP.users‘ doesn‘t exist
Error: Table ‘bWAPP.users‘ doesn‘t exist
|
6月前
|
Java
【ERROR】‘<>‘ operator is not allowed for source level below 1.7
【ERROR】‘<>‘ operator is not allowed for source level below 1.7
71 0
|
7月前
|
存储
Build desc failed:Fetch table group shards failed on meta proxy:Loading cached shard 1ocation value for table group[dwhg_scm.dwhg_prd_tg_default] failed
Build desc failed:Fetch table group shards failed on meta proxy:Loading cached shard 1ocation value for table group[dwhg_scm.dwhg_prd_tg_default] failed
203 2
|
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
168 0
|
关系型数据库 MySQL Linux
SQLSTATE[HY000]: General error: 1364 Field ‘xxx’ doesn't have a default value 解决办法
SQLSTATE[HY000]: General error: 1364 Field ‘xxx’ doesn't have a default value 解决办法
1760 0
|
Linux
WARNING: Re-reading the partition table failed with error 22: Invalid argument
在划分磁盘分区时,遇到错误“WARNING: Re-reading the partition table failed with error 22: Invalid argument” 如下所示: [root@DB-Server u02]# fdisk -l   Disk /dev/sda: 500.
2547 0