编程语言
首页 > 编程语言> > python – 在Google App Engine(GAE)上安装扩展程序

python – 在Google App Engine(GAE)上安装扩展程序

作者:互联网

我正努力让tipfy在Google App Engine(GAE)上运行.我正在使用Windows XP.

“你好世界”的例子运作正常.我不明白的是如何正确安装扩展.

我试图使用“multi-auth” example而没有太大的成功.

我收到以下错误:

ImportError: No module named wtforms.validators

我已经尝试安装扩展,根据documentation,它说要运行:

bootstrap.py –distribute

哪个回报:

Downloading
07003

Extracting in d:\temp\tmp2frf61

Now working in
d:\temp\tmp2frf61\distribute-0.6.14

Building a Distribute egg in
d:\temp\tmpq4-j_v

warning: no files found matching
‘Makefile’ under directory ‘docs’

warning: no files found matching
‘indexsidebar.html’ under directory
‘docs’

d:\temp\tmpq4-j_v\distribute-0.6.14-py2.5.egg

install_dir d:\temp\tmpq4-j_v

然后我跑:

bin/buildout

并获得以下内容:

While:
Initializing.
Error: Couldn’t open D:\downloads\tipfy.0.6.3.build\project\bin\buildout.cfg

因为bin目录中不存在该文件,我假设应该在我运行之后放在那里:

bootstrap.py –distribute

解决方法:

你应该从buildout.cfg所在的目录运行bin / buildout,而不是bin目录.
做这样的事情

cd D:\downloads\tipfy.0.6.3.build\project
start bin/buildout

标签:python,google-app-engine,tipfy
来源: https://codeday.me/bug/20190621/1257464.html