[Python.NET] Problem installing pythonnet 2.5.2 on Debian 11

2022-04-27 Thread Muhammed-Talha Özmen
Hello , I am developing with Python 3.7.9 on Debian 11 and I have to import C# Libraries. For that I’ve tried to install pythonnet 2.5.2 via pip, but I get error messages. I’ve installed clang, libglib2.0-dev, nuget, dotnet runtime 2.0 (the C# Libs were developed with .NET Core 2.0, but I tried

[Python.NET] Re: Problem installing pythonnet 2.5.2 on Debian 11

2022-04-27 Thread Alex Earl
What error messages are you getting? On Wed, Apr 27, 2022 at 8:43 AM Muhammed-Talha Özmen < ozmen.muham...@outlook.com> wrote: > Hello , > > > > I am developing with Python 3.7.9 on Debian 11 and I have to import C# > Libraries. > > For that I’ve tried to install pythonnet 2.5.2 via pip, but I ge

[Python.NET] Re: Problem installing pythonnet 2.5.2 on Debian 11

2022-04-27 Thread Emmanuel Rutovic
Hi Mohammed, Have you installed Mono Framework? (https://www.mono-project.com) The C# code needs to be compiled targeting .Net Framework and not .Net Core / 5.0 / 6.0. Pythonnet 3.0 will be compatible with the newest flavor of .Net and will not require .Net Framework. Hope this helps. Regards, M