gpt4 book ai didi

python - 为什么我收到 "AttributeError: module ' 图像“没有属性 'Image'”?

转载 作者:行者123 更新时间:2023-12-05 00:42:40 25 4
gpt4 key购买 nike

当我尝试执行下面的程序时:

import image
img = image.Image("LutherBellPic.jpg")

print(img.getWidth())
print(img.getHeight())

p = img.getPixel(45, 55)
print(p.getRed(), p.getGreen(), p.getBlue())

我不断收到以下错误:

AttributeError: module 'image' has no attribute 'Image'

最佳答案

您安装的不是 cImage 包,而是 image 包。

因此,您必须使用以下命令卸载错误的软件包:

pip uninstall image

并使用以下命令安装正确的:

pip install cImage

每个包的详细信息可以在 Python Package Index 中找到。存储库。

简而言之:

图像包: 基于 Python 的 Web 框架 Django 的图像处理库。

cImage 包: 用于 Python 的图像处理库。

关于python - 为什么我收到 "AttributeError: module ' 图像“没有属性 'Image'”?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72501618/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com