【发布时间】:2010-06-20 06:19:15
【问题描述】:
当我部署我的谷歌应用引擎项目时,我收到以下警告:
WARNING appengine_rpc.py:399 ssl module not found.
Without the ssl module, the identity of the remote host cannot be verified, and
connections may NOT be secure. To fix this, please install the ssl module from
http://pypi.python.org/pypi/ssl.
我下载了包,但是当我尝试时
python setup.py build
我得到以下错误输出:
looking for /usr/include/openssl/ssl.h
looking for /usr/local/ssl/include/openssl/ssl.h
looking for /usr/contrib/ssl/include/openssl/ssl.h
Traceback (most recent call last):
File "setup.py", line 167, in <module>
ssl_incs, ssl_libs, libs = find_ssl()
File "setup.py", line 142, in find_ssl
raise Exception("No SSL support found")
Exception: No SSL support found
我需要做什么来安装它,是路径问题还是什么?
【问题讨论】:
-
如警告所示,您没有有安装 SSL 模块。您是否有理由怀疑有人想要 MitM 您与 App Engine 服务器的连接?
标签: python google-app-engine ssl