英文:
I get "error while initializing app engine" while trying to create appengine Application on GCP
问题
我正在使用控制台。我在第一阶段(配置应用程序)遇到了这个错误。我已经尝试在多个GCP帐户上创建App Engine应用程序,但是我一直遇到相同的错误“初始化App Engine时出错”。
我已经尝试使用不同的GCP帐户。
我已经尝试添加我的银行卡详细信息。
英文:
I am using the console. I'm getting this error on the first stage (Configure application). I have tried to create an appengine application on multiple GCP accounts but I'm getting the same error "error while initializing app engine".
I have tried using different GCP accounts.
I have tried adding my card details.
答案1
得分: 4
我在4月14日观察到了同样的问题,尝试了很多次,使用了不同的位置。
有效的方法是在本地机器上使用gcloud
命令行工具(您也可以尝试在线使用“激活云Shell”):
gcloud auth login
gcloud config set project <project>
gcloud app create
英文:
I observed the same problem on April 14, having tried many times with different locations.
What worked was using the gcloud
CLI tool on a local machine (you could also try online with "Activate Cloud Shell"):
gcloud auth login
gcloud config set project <project>
gcloud app create
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论