谷歌应用程序引擎补丁在Windows上的manage.pysyncdb不起作用

发布于 2024-08-12 23:41:10 字数 631 浏览 6 评论 0原文

同步 DB 命令时,出现以下错误

我已经安装了 Google App Engine 补丁,当我想在 Windows 上的命令提示符上

manage.py syncdb

The Google App Engine SDK could not be found!Visit http://code.google.com/p/app-engine-  patch/ for installation instructions.

我也安装了 win32api,但它仍然会重复出现。 appcfg.py 和 dev_appserver.py 工作正常。

编辑

中添加和删除了以下路径

F:\Program Files\Google\google_appengine\google
F:\Program Files\Google\google_appengine\lib

从路径编辑 以下黑客使它工作,但我希望有更好的

SDK_PATH = "F:\Program Files\Google\google_appengine" 

方法 common\appenginepatch 中的 aecmd.py

I have installed Google App Engine patch and I get the following error when I want to sync the DB

Command on command prompt on windows

manage.py syncdb

The Google App Engine SDK could not be found!Visit http://code.google.com/p/app-engine-  patch/ for installation instructions.

I have installed win32api too and it still recurs. appcfg.py and dev_appserver.py works normally.

EDIT

Added and removed following paths from PATH

F:\Program Files\Google\google_appengine\google
F:\Program Files\Google\google_appengine\lib

EDIT
The following hack has made it working but I hope there is a better way

SDK_PATH = "F:\Program Files\Google\google_appengine" 

in
aecmd.py in common\appenginepatch

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

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

发布评论

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

评论(1

沙与沫 2024-08-19 23:41:10

阅读会有所帮助,

特别 感谢 Jesaja Everling线

如果您使用 Django
关系数据库,你现在会
必须运行manage.pysyncdb来创建
必要的数据库表。和
App Engine 这会动态发生。

此外,改进了对 PROGRAMFILES 的破解,

    if os.name in ('nt', 'dos'):
        #Below path only considers C:\\Program Files
        #prefix = '%(PROGRAMFILES)s' % os.environ
        #paths.append(prefix + r'\Google\google_appengine')        
        #check all drives for path 
        for path in os.environ.get('PATH', '').split(';'):
            if path.endswith('google_appengine') or path.endswith('google_appengine\\') :
                paths.append(path)  

默认情况下仅提供 C:,而我的 google_appengine 位于 F:

A little more reading helped , and thanx to Jesaja Everling

specifically the line

If you were using Django with a
relational database, you would now
have to run manage.py syncdb to create
the necessary database tables. With
App Engine this happens on the fly.

Additionally, improved the hack to

    if os.name in ('nt', 'dos'):
        #Below path only considers C:\\Program Files
        #prefix = '%(PROGRAMFILES)s' % os.environ
        #paths.append(prefix + r'\Google\google_appengine')        
        #check all drives for path 
        for path in os.environ.get('PATH', '').split(';'):
            if path.endswith('google_appengine') or path.endswith('google_appengine\\') :
                paths.append(path)  

PROGRAMFILES gives only C: by default and my google_appengine is in F:

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