Hi I'm trying to build a pipeline using python in Azure. The problem is when I build the pipeline I'm getting the error "Install Python dependencies."
The official documentation talks about building a requirements.txt that uses pip to install the dependencies. https://learn.microsoft.com/en-us/azure/devops/pipelines/ecosystems/python?view=azure-devops
The problem is I don't know how to make it so that the pipeline will read the requirements file and automatically install those dependencies before it reads the .py file.
These are the dependencies I need to install
pip install pandas
pip install openpyxl
pip install tkinter
I'd be grateful for any help you can provide.