在 Google App Engine 上设置 Pyramid
执行这些步骤将产生以下结果:
$ python2.5 ../appengine-monkey/appengine-homedir.py --gae $GAE_PATH pyramidapp
New python executable in pyramidapp/bin/python2.5
Also creating executable in pyramidapp/bin/python
ERROR: The executable pyramidapp/bin/python2.5 is not functioning
ERROR: It thinks sys.prefix is '/System/Library/Frameworks/Python.framework/Versions/2.5' (should be '/Users/lostdorje/Development/workspace/pyramidapp')
ERROR: virtualenv is not compatible with this system or executable
我看到其他一些人有类似的问题。
有什么想法吗?
Following these steps produces the following:
$ python2.5 ../appengine-monkey/appengine-homedir.py --gae $GAE_PATH pyramidapp
New python executable in pyramidapp/bin/python2.5
Also creating executable in pyramidapp/bin/python
ERROR: The executable pyramidapp/bin/python2.5 is not functioning
ERROR: It thinks sys.prefix is '/System/Library/Frameworks/Python.framework/Versions/2.5' (should be '/Users/lostdorje/Development/workspace/pyramidapp')
ERROR: virtualenv is not compatible with this system or executable
I see some others are having similar problems.
Any thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我编写了一个 Google App Engine 上的 Pyramid 示例。它基于 zc.buildout 和问题中提到的教程,但它与 Pyramid 1.4 和一些帮助程序一起运行。
I wrote a Pyramid on Google App Engine example. Its based on
zc.buildout
and on the tutorial mentioned in the question, but it is running withPyramid 1.4
and some helper recipes.