如何在不使用 Visual Code Studio 的情况下在 Python 中创建 Azure 函数应用程序

How to create Azure function App in Python without using Visual Code Studio

我想使用 python 语言创建一个 Azure Function App。但我不想使用任何工具,如 Visual Code Editor。我想用azure的内联代码编辑器,因为我的代码量不大

我创建了一个包含以下详细信息的函数应用程序:

publish: code
stack: python
version: 3.7
Region: Central US
OS: Linux
Plan Type: Consumption

但是创建函数应用程序后,它不允许我使用内联编辑器。我收到以下错误

Editing functions in the Azure portal is not supported for Linux Consumption Function Apps.

错误消息非常清楚:您无法使用 Azure 门户编辑功能 Linux 消费功能应用程序。您必须创建一个 Windows 消费函数 app

目前 Python 仅在 Linux 消费计划中受支持,截至目前,您无法使用 Azure 门户为 Linux 消费应用程序编辑功能。

我建议您通读此issue以了解更多

您可以使用命令行工具在 Azure 消费或专用计划上创建 Python 功能应用。

请找到步骤here

消费和专用应用服务计划中的 Python 功能应用目前不支持编辑功能。请检查此 GitHub announcement.