gpt4 book ai didi

Python 和 Zope : Module will import in python but not in zope

转载 作者:行者123 更新时间:2023-11-30 23:58:04 26 4
gpt4 key购买 nike

我已经安装了图像模块http://www.pythonware.com/products/pil/ 。然后我尝试将其导入 python 解释器并成功:

>>> import Image
>>>

但是当我尝试通过 DTML 页面在 Zope 中导入模块时:

DTML 页面如下所示:

<dtml-var import_image>

调用此脚本:

def import_image(self):
import Image
im = Image.open("/home/rv/Desktop/blah.jpg")
return im

然后我收到此错误:

“ImportError:没有名为 Image 的模块”当我在 python 解释器中导入它时,怎么可能没有模块?

<小时/>

编辑

python 脚本位于 Zopes 扩展文件夹中

最佳答案

尝试:

import PIL.Image

而不是:

import Image

Zope 有一个 Image 模块,您可能会遇到命名空间冲突。

关于Python 和 Zope : Module will import in python but not in zope,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3303333/

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