Hello @Veerendra
This error occurs when a Python function app fails to load a Python module. The root cause for this error is one of the following issues:
- The package can't be found * The package isn't resolved with proper Linux wheel
- The package is incompatible with the Python interpreter version
- The package conflicts with other packages
- The package supports only Windows and macOS platforms To identify the actual cause of your issue, you need to get the Python project files that run on your function app.
If you don't have the project files on your local computer, you can get them in one of the following ways:
- Download the file by copying and pasting the URL into your browser.
- Use the Azure Functions Core Tools to download the files. Once you have the project files, you can check if the 'fitz' package is included in the requirements.txt file. If it is not included, you can add it to the file and redeploy the function app. If the package is already included in the requirements.txt file, you can try updating the package to the latest version or reinstalling the package. You can also try checking if there are any other packages that conflict with the 'fitz' package. If none of the above solutions work, it is possible that the package is not compatible with the Python interpreter version or the Linux wheel is not resolved properly. In this case, you can try using a different version of the package or resolving the Linux wheel issue.
I hope this helps you resolve the issue.