No matching distribution found for tb-nightly
时间: 2024-05-03 19:11:30 浏览: 171
基于混合内在映射的密集对应算法
根据您提供的引用内容,出现`No matching distribution found for tb-nightly`的错误是因为无法找到与`tb-nightly`匹配的版本。可能原因之一是您使用的是错误的版本或拼写错误。您可以尝试通过更换源来解决这个问题。
一个可行的解决方案是将源更改为阿里云源。您可以使用以下命令更改源:
```
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`库,这样可能会解决`No matching distribution found`的问题。
阅读全文