No matching distribution found for alembic>=1.9.0 (from flask-migrate->apache-superset)
时间: 2024-02-01 21:13:09 浏览: 338
这个错误信息表示在安装 `apache-superset` 时,缺少 `alembic` 版本大于等于 `1.9.0`。可以尝试使用以下命令安装 `alembic`:
```
pip install alembic>=1.9.0
```
然后再尝试安装 `apache-superset`:
```
pip install apache-superset
```
如果还是出现类似的错误,可以先尝试升级 pip:
```
pip install --upgrade pip
```
然后再重新安装 `apache-superset`。如果还是不行,可以考虑检查 python 环境和依赖库是否正确。
相关问题
No matching distribution found for torch==1.9.0+cu111
这个错误通常是由于找不到与你的CUDA版本匹配的PyTorch版本所致。 `cu111` 表示你正在使用CUDA 11.1版本,因此你需要安装与之兼容的PyTorch版本。
你可以尝试安装以下命令来获取与CUDA 11.1兼容的PyTorch版本:
```
pip install torch==1.9.0+cu111 -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
如果你使用的是conda,则可以使用以下命令:
```
conda install pytorch==1.9.0 torchvision==0.10.0 torchaudio==0.9.0 cudatoolkit=11.1 -c pytorch -c nvidia
```
注意,你需要确保你的系统上已经安装了CUDA 11.1。
ERROR: Could not find a version that satisfies the requirement torch==1.9.0+cu111 (from versions: 1.11.0, 1.12.0, 1.12.1, 1.13.0, 1.13.1, 2.0.0, 2.0.1) ERROR: No matching distribution found for torch==1.9.0+cu111
如果你在安装torch时遇到了这个错误,可能是因为你的pip版本过低。可以尝试先升级pip,然后再重新安装torch,具体命令如下:
```
pip install --upgrade pip
pip install torch==1.9.0+cu111 torchvision==0.10.0+cu111 torchaudio==0.9.0 -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
这个命令会先升级pip到最新版本,然后安装torch、torchvision和torchaudio。如果你的CUDA版本不是11.1,可以在链接中选择相应的版本进行安装。
阅读全文