ERROR: No matching distribution found for tomli>=2.0.1 (from yapf->basicsr)
时间: 2024-05-13 08:20:02 浏览: 349
这个错误是因为您的环境中缺少 `tomli` 模块的版本,导致 `yapf` 安装 `basicsr` 时出错。您可以尝试通过以下命令安装最新版本的 `tomli`:
```
pip install tomli>=2.0.1
```
然后再重新安装 `basicsr`,应该就能成功了。如果仍然遇到问题,请检查您的环境是否满足其他依赖项的要求,并尝试更新 pip 版本。
相关问题
ERROR: Could not find a version that satisfies the requirement torch==1.8.0 (from versions: 2.0.0, 2.0.1) ERROR: No matching distribution found for torch==1.8.0
这个错误通常表示您的 Python 环境中没有安装 PyTorch 1.8.0 版本。您可以尝试在终端中运行以下命令来安装 PyTorch 1.8.0:
```
pip install torch==1.8.0 -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
请注意,这需要您的计算机支持 CUDA 11.1,如果不支持,可以更换下载链接中的 `cu111` 部分为您的 CUDA 版本号。如果您不知道自己的 CUDA 版本,可以在终端中运行 `nvcc --version` 来查看。
ERROR: No matching distribution found for jupyter-core>=4.6.0 (from jupyter-client->ipykernel)
这个错误是由于你安装的 jupyter-core 的版本低于 4.6.0 导致的。为了解决这个问题,你可以尝试更新 jupyter-core 到最新版本。可以使用以下命令来更新:
```
pip install --upgrade jupyter-core
```
然后再次尝试安装 jupyter-client,应该就能成功了。
阅读全文