I have a question regarding deploying a function in the Azure portal.
I had a project for data visualizations that I wrote that code with Matplotlib and I deployed it on Azure, and right now is on production.
Then, I added some other graphs but this time I used Plotly. I am able to run the Azure function locally and I donโt have any problems with it. It will return the value correctly with status 200ok on Postman. However, when I deploy it on the Azure portal, I got status 500 internal servers!
Can anyone help me with this?
Note that I have a requirements file that has Plotly and everything I need on it in the same folder that I am deploying. Should I install plotly on Microsoft Azure myself?!? I assume that it can read from the requirements file
Note that I donโt have this problem with the graphs that I used Matplotlib for them. I just have this problem with the graphs I used Plotly for them.
Below, I put the small sample of my code that I can run it locally on postman, and it will return status 200Ok with string but when I deploy it on Azure, I receive 500 internal server problem