I have created a python project in VS Code and deployed it on Azure Function with all the required file like requirements.txt. Code is running successfully on my local machine but giving error when I am running it on Azure Function as "No module named 'requests'". My requirements.txt file consist of following elements:
azure-functions
requests
PyJWT
cryptography
So Is there any way to manually install this package on Azure Functions Linux VM. I am using consumption plan of Azure functions
