I am on an Azure Functions consumption plan, and am trying to follow the guide in this stackoverflow answer: https://stackoverflow.com/a/43984890/6700475
How can I do step 2, namely to "Open a Kudu console"? I have tried:
- Clicking "Advanced tools (Kudu)" in the portal - but get this warning: "Linux Consumption Functions are a preview offer."
- Finding the SCM page using: https://MYFUNCTION.scm.azurewebsites.net/, but this page is not available.
Is there another way to open a Kudu console, which works for a consumption plan on Azure functions?
(The reason I need this, is I have a Python Function I need to deploy to Azure functions, but it fails with this issue in the python worker, and I do not have Docker: https://github.com/Azure/azure-functions-python-worker/issues/367)