我是 Python 的初学者,在我的机器上本地运行我的 python googleppengine 代码时遇到了很大的困难。
我的代码如下所示:
import json
import urllib
import os
import webapp2
from google.appengine.ext.webapp import template
import datetime
from google.appengine.ext import db
class Events(db.Model):
venue_name = db.StringProperty()
address = db.StringProperty()
id = db.StringProperty()
venue_id = db.StringProperty()
# hire_date = db.DateProperty()
# attended_hr_training = db.BooleanProperty()
class eventSearch(webapp2.RequestHandler):
def get(self):
base_url = 'http://api.eventful.com/json/events/search?app_key=zGtDX6cwQjCRdkf6&l=dublin&?q=music'
response = urllib.urlopen(base_url)
html = response.read()
html = json.loads(html)
result = html['venues']
result1 = result['venue']
当我在 cmd 提示符下使用命令“python file.py”运行此代码时,收到以下错误:
Traceback <most recent call last>:
File "file.py", line 4, in <module>
import webapp2
ImportError: No module named 'webapp2'
我有 1. 按照 How to add to the pythonpath in Windows? 中的建议在我的系统变量中使用目录创建了一个 PythonPath:
C:\Python33\DLLs;C:\Python33\Lib;C:\Python33\Lib\lib2to3;C:\Program Files (x86)\Google\google_appengine;C:\Program Files (x86)\Google\google_appengine\lib ;
然后我也按照答案中的建议将以下两个目录添加到我的“PATH”变量中 - import webapp2 works on google-app-engine even though I don't have webapp2 installed
C:\Program Files (x86)\Google\google_appengine\;C:\Program Files (x86)\Google\google_appengine\lib
编辑:
在提供的答案中提出建议后,我也意识到 GAE 不支持 Python 3.3 版,我在问题的前一部分中尝试使用它运行它。
在卸载 Python33 并安装 Python27 后,更改我的系统变量以反射(reflect)新的 Python27,我仍然遇到问题,我的代码无法使用 GAE 启动器上传。
我在日志控制台 (GAE Launcher) 中收到以下错误:
2013-04-14 22:59:19 Running command: "['C:\\Python27\\pythonw.exe', 'C:\\Program Files (x86)\\Google\\google_appengine\\dev_appserver.py', '--skip_sdk_update_check=yes', '--port=8080', '--admin_port=8001', 'C:\\Users\\Karen\\Desktop\\Development\\projects\\file']"
Traceback (most recent call last):
File "C:\Program Files (x86)\Google\google_appengine\dev_appserver.py", line 193, in <module>
_run_file(__file__, globals())
File "C:\Program Files (x86)\Google\google_appengine\dev_appserver.py", line 189, in _run_file
execfile(script_path, globals_)
File "C:\Program Files (x86)\Google\google_appengine\google\appengine\tools\devappserver2\devappserver2.py", line 30, in <module>
from google.appengine.datastore import datastore_stub_util
File "C:\Program Files (x86)\Google\google_appengine\google\appengine\datastore\datastore_stub_util.py", line 45, in <module>
from google.appengine.api import api_base_pb
File "C:\Program Files (x86)\Google\google_appengine\google\appengine\api\api_base_pb.py", line 20, in <module>
from google.net.proto import ProtocolBuffer
File "C:\Program Files (x86)\Google\google_appengine\google\net\proto\ProtocolBuffer.py", line 22, in <module>
import httplib
File "C:\Python27\lib\httplib.py", line 71, in <module>
import socket
File "C:\Python27\lib\socket.py", line 47, in <module>
import _socket
ImportError: Module use of python25.dll conflicts with this version of Python.
2013-04-14 22:59:21 (Process exited with code 1)
感谢您为我提供的任何帮助。
最佳答案
你不应该安装 webapp2。它包含在 SDK 中,并且已经在生产运行时中。
阅读配置属于 appengine 环境一部分的库 https://developers.google.com/appengine/docs/python/python25/migrate27#Configuring_Libraries
这是包含的第 3 方库的列表。
https://developers.google.com/appengine/docs/python/tools/libraries27
如果您将 pip/easy_install 用于各种其他库,您会发现它本身是不够的。您需要在项目中链接或包含这些库,操作 sys.path 以便可以找到它们,并确保部署了这些库。