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

后端 未结 4 2123
离开以前
离开以前 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:36

    This has happened to me today to reinstall the app engine sdk. I could not run my code in the launcher.

    I remember reading that is not used pip app engine, but now I have solved the problem.

    In short what I did was:

    1. Install pip the footsteps of https://pip.pypa.io/en/latest/installing.html (this also correctly install the setuptools)

    2. Install docker-py by pip: pip install docker-py and ready, I can now run my code in the launcher

    P.S. Previously I tried to install the docker-py package, downloaded from https://github.com/docker/docker-py, but lacked setuptools, downloaded and installed the package did not work. So use this with pip.

提交回复
热议问题