3

我正在尝试在本地服务器上运行和部署我的 Web 应用程序。我正在学习如何使用谷歌应用引擎,当我命令 dev_appserver.py flaskapp 在 flaskapp 上方的一个目录但在我的仓库中时,我收到了这个错误:

uzuki@ubuntu:~/hw3p1s13$ ~/Downloads/google_appengine/dev_appserver.py flaskapp/
INFO     2013-03-18 03:43:12,890 appcfg.py:618] Checking for updates to the SDK.
INFO     2013-03-18 03:43:13,398 appcfg.py:636] The SDK is up to date.
WARNING  2013-03-18 03:43:13,398 dev_appserver.py:3578] The datastore file stub is    deprecated, and
will stop being the default in a future release.
Append the --use_sqlite flag to use the new SQLite stub.

 You can port your existing data using the --port_sqlite_data flag or
 purge your previous test data with --clear_datastore.

 WARNING  2013-03-18 03:43:13,400 datastore_file_stub.py:528] Could not read datastore      data from /tmp/dev_appserver.datastore
 WARNING  2013-03-18 03:43:13,618 simple_search_stub.py:975] Could not read search   indexes from /tmp/dev_appserver.searchindexes
 INFO     2013-03-18 03:43:14,431 dev_appserver_multiprocess.py:656] Running application dev~robohw27 on port 8080:     http://localhost:8080
 INFO     2013-03-18 03:43:14,432 dev_appserver_multiprocess.py:658] Admin console is available at:     http://localhost:8080/_ah/admin
 ERROR    2013-03-18 03:44:05,236 wsgi.py:219] 
 Traceback (most recent call last):
 File "/home/uzuki/Downloads/google_appengine/google/appengine/runtime/wsgi.py", line 196, in Handle
 handler = _config_handle.add_wsgi_middleware(self._LoadHandler())
 File "/home/uzuki/Downloads/google_appengine/google/appengine/runtime/wsgi.py", line 255, in _LoadHandler
handler = __import__(path[0])
ImportError: No module named coreapp
INFO     2013-03-18 03:44:05,265 dev_appserver.py:3104] "GET / HTTP/1.1" 500 -
ERROR    2013-03-18 03:44:07,858 wsgi.py:219] 

奇怪的是我确实有一个名为 coreapp 的目录,其中包含两个文件__init__.py和 views.py。该__init__.py文件夹包含

from flask import Flask
app = Flask('coreapp')
import views 

我的 views.py 文件处理对特定 URL 的 HTTP 请求。总而言之,它确实包含from coreapp import app. 所以我不确定我做错了什么??

只需添加,在我的 flaskapp 目录中的 app.yaml 文件中,它包含:

handlers
- url: .*
script : coreapp.app 

编辑:

大家好。我发现了我的问题,这太愚蠢了:

我想要“ __init__.py”,但我有“ __int__.py”。(严重错别字!)

另外,我只是 views.py 文件中的 gedit 编辑器。但我有空格和错误的撇号。如果其他人有类似的问题,请告诉我。

谢谢!我会在 6 小时内回答我自己的问题,哈哈。

4

2 回答 2

1

我发现了我的问题,这太愚蠢了:

我想要“ __init__”.py”,但我有“ __int__.py”。(严重错字!)

另外,我只是 views.py 文件中的 gedit 编辑器。但我有空格和错误的撇号。如果其他人有类似的问题,请告诉我。

于 2013-03-22T19:43:04.453 回答
0
import sys
sys.path.append(whereever_coreapp_is)
于 2013-03-18T14:43:47.403 回答