如何解决这些问题?错误:找不到版本

2024-10-04 11:31:42 发布

您现在位置:Python中文网/ 问答频道 /正文

C:\Users\isato\Desktop>pip install ImageDataGenerator

ERROR: Could not find a version that satisfies the requirement imageDataGenerator (from version: none) 
ERROR: No matching distribution found for ImageDataGenerator

我该如何解决?谢谢你的理解


Tags: installpipthethatversionnoterrorrequirement
2条回答

每当你想安装一个新的软件包时,使用pypi.org网站来检查它

https://pypi.org/project/h5imagegenerator/这可能是您试图安装的模块。如果您遇到同样的错误,只需在谷歌上搜索模块名,然后搜索PyPI,这样它就会给您提供PyPI链接,并显示用于安装模块的名称的确切名称

您试图将ImageDataGenerator作为一个独立模块使用,而它实际上是Keras的一部分,因此您必须安装Keras才能使用Keras的模块ImageDataGenerator

在代码中使用pippip3安装Keras并导入Imagedatagenerator

没有GPU时

pip install tensorflow keras

使用GPU

pip install tensorflow-gpu keras

这假设您已经安装了conda,或者您可能需要安装操作系统级依赖项,例如Ubuntu

sudo apt update
sudo apt install python3-dev python3-pip python3-venv

相关问题 更多 >