"I'm trying to run my script in Azure webjobs, but it keeps giving me the following error:
"I already reinstalled numpy and also tried to upgrade the package. I'm taking the packages from the path C:\ProgramData\Anaconda3\Lib\site-packages."
"I'm trying to run my script in Azure webjobs, but it keeps giving me the following error:
"I already reinstalled numpy and also tried to upgrade the package. I'm taking the packages from the path C:\ProgramData\Anaconda3\Lib\site-packages."
The problem was in the way I created my .zip folder. It worked fine when I followed the steps on this question's answer Run Python script in Azure Webjobs
And then added import sys sys.path.append('D:\home\site\wwwroot\App_Data\jobs\continuous\python2\myenv\Lib\site-packages') in the beginning of my code.