freeCodeCamp/guide/chinese/miscellaneous/how-to-run-google-app-engin.../index.md

1.6 KiB
Raw Blame History

title localeTitle
How to Run Google App Engine in Fedora Using Python 如何使用Python在Fedora中运行Google App Engine

本文介绍了使用python在Fedora操作系统上安装Google App Engine的分步指南。

如上文所述,测试应用程序可能对许多人不起作用。

因此,尝试这种由柯霖给出。

另外请遵循Brice Lin提供的部署策略。要做到这一点打开另一个终端如果你愿意

  • 在部署之前您必须在Google Cloud Platform中创建项目。按照上传应用程序中的步骤操作

  • 但仍然遵循上述部署策略可能对许多人不起作用。这样的错误可能如下:

    ERROR appcfg.py:2396 An error occurred processing file '': HTTP Error 400: Bad Request Unexpected HTTP status 400\. Aborting. Error 400: --- begin server output --- A version or backend parameter is required. --- end server output ---

由于文件app.yaml中缺少Version语句因此发生此错误。因此在应用程序库中的app.yaml文件中添加version: 1 。在这里, helloworld是存储库。现在它会起作用。快乐的编码和制作应用程序。

不要忘记查看此链接: 在Youtube上的Google App Engine上开发和部署应用程序。