我试图在ubuntu上使用,但是我得到了python的这些错误。
Traceback (most recent call last):
File "google_appengine/dev_appserver.py", line 78, in <module>
run_file(__file__, globals())
File "google_appengine/dev_appserver.py", line 74, in run_file
execfile(script_path, globals_)
File "/home/user/Downloads/google_appengine/google/appengine/tools/dev_appserver_main.py", line 118, in <module>
from google.appengine.tools import appcfg
File "/home/user/Downloads/google_appengine/google/appengine/tools/appcfg.py", line 68, in <module>
from google.appengine.tools import appengine_rpc
File "/home/user/Downloads/google_appengine/google/appengine/tools/appengine_rpc.py", line 27, in <module>
import fancy_urllib
File "/home/user/Downloads/google_appengine/lib/fancy_urllib/fancy_urllib/__init__.py", line 341, in <module>
class FancyHTTPSHandler(urllib2.HTTPSHandler):
AttributeError: 'module' object has no attribute 'HTTPSHandler'编辑:问题在您的帮助下已经解决了,非常感谢!
发布于 2011-04-11 15:21:06
看起来您安装的python没有在其中编译SSL。这个问题基本上是一样的:
How do I configure multiple Ubuntu Python installations to avoid App Engine's SSL error?
https://stackoverflow.com/questions/5623057
复制相似问题