Unable to start App Engine application after updating it via Google Cloud SDK

后端 未结 4 2112
离开以前
离开以前 2020-12-16 14:18

Recently, I have updated Google App Engine from 1.9.17 to 1.9.18 via Google Cloud SDK by using command \'gcloud components update\' in Windows 7 64 bit. After that I wasn\'t

4条回答
  •  抹茶落季
    2020-12-16 14:43

    If installing docker-py doesn't work and the stacktrace shows that the error line is:

    from docker import docker
    

    Change this line to:

    import docker
    

    Source

提交回复
热议问题