Python GAE-django manage.py问题

Python GAE-django manage.py问题,python,django,google-app-engine,Python,Django,Google App Engine,您好,我正在尝试将GAE与django一起使用,但我面临一个问题。 我使用了testapp,制作了一个新的应用程序。让我们说它是test,使用命令manage.py startapp test 然后我制作了一些模型,并尝试使用命令manage.py sql test 问题是它不起作用,给了我这个 WARNING 2011-05-26 21:15:19,855 datastore_file_stub.py:657] Could not read datastore data from C:\U

您好,我正在尝试将GAE与django一起使用,但我面临一个问题。 我使用了testapp,制作了一个新的应用程序。让我们说它是test,使用命令manage.py startapp test

然后我制作了一些模型,并尝试使用命令manage.py sql test

问题是它不起作用,给了我这个

WARNING  2011-05-26 21:15:19,855 datastore_file_stub.py:657] Could not read datastore data
 from C:\Users\faust\Desktop\appdja\project\django-testapp\.gaedata\datastore

有人能帮我解决这个问题吗?

这不是错误,而是警告。假设您的模型是正确的,那么在您实际将某些内容存储到后端之后,消息就会消失,此时您的.gaedata\datastore将被填充。

您如何在GAE中使用django,使用django non-rel?