Windows 上 virtualenv 中的 Python 成像库 (PIL)

发布于 2024-11-18 02:38:17 字数 405 浏览 2 评论 0原文

我有一个 python 程序,它使用了大量的扩展,所以我试图为它设置一个 virtualenv。然而,它使用的库之一是 PIL。安装后,我在 PIL 上遇到导入错误。

这个问题已在下面的链接中找到,但那里的解决方案对我不起作用(可能是因为我使用的是 Windows?我不知道。)

使用 virtualenv 或 buildout 安装 PIL 的问题

我在新的 virtualenv 中的重新打包包上使用了 easy_install ,没有运气。有谁知道可能导致此问题的原因,或者在哪里寻找诊断问题的方法?

I've got a python program that is using a ridiculous amount of extensions, so I'm trying to set up a virtualenv for it. However, one of the libraries it uses is PIL. After installing it, I get an import error on PIL.

This problem has been identified at the link below, but the solution there does not work for me (possibly because I'm using windows? I don't know.)

The problem with installing PIL using virtualenv or buildout

I used easy_install on the repackaged package in a fresh virtualenv, with no luck. Does anybody have ideas what might be causing this, or where to look to diagnose the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

被翻牌 2024-11-25 02:38:17

问题是我是导入 PIL.Image 还是简单地导入 Image。 virtualenv 使用 Image,而我的 Python 安装使用 PIL.image。

The issue was whether I was importing PIL.Image or simply Image. The virtualenv used Image, whereas my Python installation used PIL.image.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文