1

我正在运行 Google AppEngine PHP SDK v1.8.0 的本地开发副本,其中包含 PHP v5.4.3 和 Python v2.7,均在 Windows 7 64 位下运行。

为了在我的操作系统中注册 Python 并正确安装 Python PIL 模块,我已按照此处和其他地方的许多帖子中的说明进行操作。

我在这里找到的最后一篇文章Unable to find the Python PIL library.Google App Engine。因此,我补充说:

libraries:
- name: PIL
  version: 1.1.7

到 app.yaml。

我现在收到这篇文章标题中引用的错误。如果有人可以提供建议,我将不胜感激。

谢谢你。

4

1 回答 1

1

我认为@Tim 想说的是,您应该将 app.yaml 更改为“runtime: python27”而不是“runtime: php”,因为正如错误所暗示的那样,PIL 库仅受 python27 支持,而不是 php .

于 2013-06-29T23:51:23.290 回答