Hi @Simon,
If Python is not appearing as an option in the Runtime stack dropdown menu while setting up an Azure Function App, there may be several reasons for this:
- Python applications are only supported on Linux within Azure Functions. If you are attempting to create a function app on Windows, Python will not be listed as an option.
- Make sure you are using a hosting plan that supports Python. Python applications can only be created on Linux with either a Premium plan or a Dedicated (App Service) plan. If you are on a Consumption plan, Python will not be an available option.
- Sometimes, temporary issues with the Azure portal can cause certain options to not display correctly. Refreshing the page or trying again later might resolve the issue.
For more details, refer to the documentations:
- Update language stack versions in Azure Functions (programming-language-python)
- Supported languages in Azure Functions (programming-language-python)
I hope this helps resolve your issue. Feel free to reach out if you have further concerns.