App Engine not finding google.auth file in dev_appserver.py

前端 未结 2 1752
失恋的感觉
失恋的感觉 2021-01-25 11:49

I\'m receiving the following error when executing the dev_appserver.py:

from google.auth import app_engine
File \"/google/google-cloud-sdk/platform/google_appeng         


        
2条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-25 12:24

    I had very likely problem in from google.auth.crypt import base and I solved it, so you can try this.

    Go to the file that has the import problem, and change manually the:

    from google.auth import app_engine
    

    To the:

    import app_engine
    

提交回复
热议问题