ERROR: Could not find a version that satisfies the requirement skimage (from versions: 0.0) ERROR: No matching distribution found for skimage
时间: 2023-08-14 09:09:16 浏览: 241
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误通常是由于缺少scikit-image库导致的。你可以尝试使用以下命令安装该库:
```
pip install scikit-image
```
如果你使用的是conda环境,可以尝试使用以下命令:
```
conda install -c conda-forge scikit-image
```
安装完成后,你应该能够正常导入和使用scikit-image库了。
阅读全文