创建 Google App Engine 项目
最后修改时间:2023 年 6 月 26 日Google App Engine项目旨在在 Google 基础设施中高效地开发 Web 应用程序。PyCharm 负责创建特定的目录结构和设置。
要创建 Google App Engine 项目,请按照以下步骤操作
请注意,创建新项目时,PyCharm 始终使用 Python 2.7 运行时。
转到 文件 | 新建项目,或单击欢迎屏幕中的新建项目按钮。
在“新建项目”对话框中,执行以下操作:
选择Google App Engine作为项目类型。
指定项目位置。
选择创建 Git 存储库将项目置于 Git 版本控制之下。
如果您想继续使用Project venv或Base conda解释器,请选择相应的选项并单击Create。
要配置其他类型的解释器或使用现有环境,请选择自定义环境。
以下步骤取决于您的选择:
生成新环境选择现有环境康达虚拟环境皮彭夫诗歌从列表中选择 Python 版本。
通常,PyCharm 会检测 conda 安装。
否则,指定 conda 可执行文件的位置,或单击进行浏览。
指定环境名称。
在“位置”字段中指定新虚拟环境的位置,或单击并浏览文件系统中的所需位置。新虚拟环境的目录应该为空。
从列表中选择基本解释器,或者单击并在文件系统中找到所需的 Python 可执行文件。
如果您希望将计算机上全局 Python 中安装的所有包添加到您要创建的虚拟环境中,请选中“继承全局站点包”复选框。该复选框对应于virtualenv
--system-site-packages
工具的选项。
从列表中选择基本解释器,或者单击并在文件系统中找到所需的 Python 可执行文件。
如果您已将基本二进制目录添加到
PATH
环境变量中,则无需设置任何其他选项:将自动检测 pipelinev 可执行文件的路径。If the pipenv executable is not found, follow the pipenv installation procedure to discover the executable path, and then specify it in the dialog.
Choose the base interpreter from the list, or click and find the desired Python executable in your file system.
If PyCharm doesn't detect the poetry executable, specify the following path in the dialog, replacing
jetbrains
with your username:macOSWindowsLinux/Users/jetbrains/Library/Application Support/pypoetry/venv/bin/poetry
C:\Users\jetbrains\AppData\Roaming\pypoetry\venv\Scripts\poetry.exe
/home/jetbrains/.local/bin/poetry
condaOther environmentsTo reuse an existing conda environment:
Switch Type to Conda.
Normally, PyCharm will detect conda installation.
Otherwise, specify the location of the conda executable, or click to browse for it.
Select the environment from the list. If you specified the path to conda manually, you may need to reload environments.
To reuse a Virtualenv, Pipenv, or Poetry environment:
Switch Type to Python.
Select the Python executable from the list or click to browse for it.
单击 更多设置,然后指定以下内容:
在应用程序 ID字段中,输入您已在Google App Engine 的创建应用程序页面上定义的标识符。项目标识符应满足一定要求:只能使用小写字母、数字和“-”字符;应用程序 ID 不应以“-”开头。
App Engine SDK 目录- App Engine SDK 在您计算机上的位置。如果变量中缺少此 SDK
path
,请手动输入或单击并从文件系统中找到所需的目录。如果安装时将SDK目录添加到path
变量中,则会自动检测到。
提示
如果所选解释器中缺少 Google App Engine,PyCharm 将显示一条信息消息,指示将下载 Google App Engine。
单击创建。
创建项目后,您应该在项目工具窗口中看到以下文件:
app.yml:用于配置 App Engine 应用设置的文件。请参阅app.yaml 参考中的更多详细信息和示例。
main.py:应用程序样板。如果您在创建项目时启用了使用第三方库,则会添加相应的代码模板,例如Django或Flask。
使用代码意图和快速修复来安装丢失的软件包
感谢您的反馈意见!