'Azure function in python 3.8 in Linux failing when invoking Azure ML
I am working on an Azure Function which is written in Python 3.8. Azure function in Azure in Python is deployed in Linux. The Azure function is invoking Azure ML pipeline. When invoking the pipeline I am seeing the following exception:
Exception: NotImplementedError: Linux distribution debian 11. does not have automatic support.
.NET Core 2.1 can still be used via dotnetcore2 if the required dependencies are installed.
Visit https://aka.ms/dotnet-install-linux for Linux distro specific .NET Core install instructions.
Follow your distro specific instructions to install dotnet-runtime-* and replace * with 2.1
I have tried installing dotnetcore2 runtime via requirements.txt file but still getting the error. Any help is appreciated.
Solution 1:[1]
I am working on an Azure Function which is written in Python 3.8. Azure function in Azure in Python is deployed in Linux.
Based on the Microsoft Documentation for Linux :-
The dot net core 2 version is not supported . Please try to install 3.12 or above to make it work.
I haven't tested in my environment.

For more information please refer the below links:-
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | AjayKumarGhose-MT |
