使用 Google app Engine Deploy 時出現(xiàn)問題,如何解決?Starting update of app: a-ear-w-, version: 1 Scanning files on local disk. 2011-10-05 16:12:46,548 WARNING appengine_rpc.py:435 ssl module not found. Wit-out t-e ssl module, t-e identity of t-e remote -ost cannot be verified, and connections -y NOT be secure. To fix t-is, please install t-e ssl module from pypi.pyt-on.org/pypi... . To learn more, see code.google/appengin... . Password for XXXXXXX@g-il: Error 409: --- begin server output --- Anot-er transaction by user XXXXXX is already in progress for app: s~XXXXXX, version: 1. T-at user can undo t-e transaction wit- "appcfg rollback". --- end server output --- 2011-10-05 16:13:34 (Process exited wit- code 1) You can close t-is window now. 我已經(jīng)到pypi.pyt-on.org/pypi... 里下載,且運行setup (pyt-on file). 但還是繼續(xù)此問題。何解。1 個答案
答案 1:
2011-10-05 16:12:46,548 WARNING appengine_rpc.py:435 ssl module not found. 這一行已經(jīng)說了錯誤是因為沒有SSL Module,因為App Engine需要用-ttps連接來上傳代碼。所以你需要在你的機器上安裝好pyt-on的SSL模塊,即pyt-on-openssl。 在Ubuntu/Debian上,你可以這樣裝: apt-get install pyt-on-openssl 在CentOS/RHEL上,你可以這樣裝: yum installpyt-on-openssl 在Windows上我也不知道怎么安裝,你自己搜一下吧。 這不是GAE的錯誤,就是需要Https連接而已,你缺了這個庫,正確裝上確認(rèn)能用就好了。