6

I want to create an Azure Function App using python language. But I don't want to use any tools like Visual Code Editor. I want to use the inline code editor of azure because my code is not that big.

I created a function app with below details:

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

But after the function app is created it did not allow me to use inline editor. I get the below error

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

4 Answers 4

4

Right now Python is supported only on the Linux Consumption plan and as of now you cannot edit function using Azure portal for Linux consumption Apps.

I would recommend you to go through this issue to understand more

Sign up to request clarification or add additional context in comments.

Comments

3

You can use command-line tools to create a Python function app on Azure on consumption or dedicated plans.

Please find the steps here.

Editing functions is not supported at this time for Python function apps on both Consumption and dedicated app service plans. Please check this GitHub announcement.

Comments

0

The error message is pretty clear: you can't edit functions using Azure Portal For Linux Consumption Function Apps. You must create a Windows Consumption function app

1 Comment

But its not allowing me to choose python if I go with windows consumption plan.
0

This probably changed since 2020 when the original question was asked, and now I can create Linux based, Python functions on Azure portal and have the in-portal python code editor.

The only requirement, as far as I can see, is to create/use the storage account for the function when creating Function App - as well as Azure Files connection. Without the Azure Files connection, I can create/edit functions only using VSCode.

azure portal - create function app - storage tab

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.