Hi @Sue Folkerts ,
Currently, Python is supported on Azure App Service for Linux, and you can publish apps using Git deploy and containers.
Please see this tutorial: Configure a Linux Python app for Azure App Service for how to run pip in app service. This article describes how Azure App Service runs Python apps, how you can migrate existing apps to Azure, and how you can customize the behavior of App Service when needed. Python apps must be deployed with all the required pip modules.
The App Service deployment engine automatically activates a virtual environment and runs pip install -r requirements.txt
for you when you deploy a Git repository, or a zip package.
Hope that helps. Please let us know if you have further questions.
-Grace