“ImportError: No module named _ssl” with dev_appserver.py from Google App Engine

后端 未结 7 1927
误落风尘
误落风尘 2020-11-27 13:55

Background

\"In the Python runtime, we\'ve added support for the Python SSL Library, so you can now open secure connections to remote servic

7条回答
  •  [愿得一人]
    2020-11-27 14:07

    I had this problem because I wasn't vendoring ssl in my app.yaml file. I know the OP did that, but for those landing here for the OP's error, it's worth making sure lines like the following are in your app.yaml file:

    libraries:
    - name: ssl
      version: latest
    

提交回复
热议问题