gpt4 book ai didi

python - 没有名为 Image 的模块

转载 作者:IT老高 更新时间:2023-10-28 20:57:41 27 4
gpt4 key购买 nike

对不起我的语法,我不会说英语。设置文件浏览器、tinymce 和 grappelli 后,出现此错误:No module named Image

try:
from PIL import Image
except ImportError:
import Image

我将它设置为 PIL 但它没有解决问题。我的平台窗口

如果我想:pip install PIL

`c:\Users\Kim\BitNami DjangoStack projects\homex8>pip install PIL
Downloading/unpacking PIL
Running setup.py egg_info for package PIL
WARNING: '' not a valid package name; please use only.-separated package names in setup.py

Installing collected packages: PIL
Running setup.py install for PIL
WARNING: '' not a valid package name; please use only.-separated package names in setup.py
building '_imaging' extension
error: Unable to find vcvarsall.bat`

我不明白这是什么意思

已解决问题。用easy_install重新安装PIL,还有更多 Action ,这里是the details .

最佳答案

您缺少 PIL(Python 图像库和成像包)。要安装我使用的 PIL

 pip install pillow

对于我运行 Mac OSX 10.6.8 的机器,我下载了 Imaging 软件包并从源代码安装它。 http://effbot.org/downloads/Imaging-1.1.6.tar.gz并 cd 进入下载目录。然后运行这些:

    $ gunzip Imaging-1.1.6.tar.gz
$ tar xvf Imaging-1.1.6.tar
$ cd Imaging-1.1.6
$ python setup.py install

或者,如果您的 Mac 中安装了 PIP

 pip install http://effbot.org/downloads/Imaging-1.1.6.tar.gz

那么你可以使用:

from PIL import Image

在你的 python 代码中。

关于python - 没有名为 Image 的模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12024397/

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