gpt4 book ai didi

python - 为什么 Python 不能从 PIL 导入图像?

转载 作者:IT老高 更新时间:2023-10-28 22:14:22 24 4
gpt4 key购买 nike

我试图运行的单行如下:

from PIL import Image

这看起来很简单,但它给出了一个错误:

Traceback (most recent call last):
File "C:\...\2014-10-22_12-49.py", line 1, in <module>
from PIL import Image
File "C:\pyzo2014a\lib\site-packages\PIL\Image.py", line 29, in <module>
from PIL import VERSION, PILLOW_VERSION, _plugins
ImportError: cannot import name 'VERSION'

如果有帮助,我从 https://pypi.python.org/pypi/Pillow/2.6.1 安装了 Pillow (文件 Pillow-2.6.1.win-amd64-py3.4.exe)在运行之前(在此之前已经安装了 som PIL,我已将其卸载)。该脚本在 Python 版本 3.4.1 的 Pyzo 中运行。

出了什么问题,如何导入Image

最佳答案

我有同样的错误。这是我的工作流程。我首先使用

安装了 PIL(不是 Pillow)
pip install --no-index -f https://dist.plone.org/thirdparty/ -U PIL

然后我找到了 Pillow 并使用它安装了它

pip install Pillow

解决我的问题的是卸载两者并重新安装 Pillow

pip uninstall PIL
pip uninstall Pillow
pip install Pillow

关于python - 为什么 Python 不能从 PIL 导入图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26505958/

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