Reputation: 13
I am trying to run .NET Core 3.0 properly on Raspberry Pi 3 B. First I tried to install CentOS 7 and cannot succeed with .NET Core. Secondly I tried to install Ubuntu 18.04 Server and properly installed .NET Core but whenever I try to run my project its giving me the following error:
Unhandled exception. System.DllNotFoundException: Unable to load shared library 'System.Native' or one of its dependencies. In order to help diagnose loading problems, consider setting the LD_DEBUG environment variable: libSystem.Native: cannot open shared object file: No such file or directory
I'm looking for advice on which Linux distro I need to install on Raspberry Pi to run .NET Core properly on this device.
Upvotes: 0
Views: 174
Reputation: 493
We have deployed .Net Core 3.1 on Raspberry pi's using Raspbian and Diet Pi. They work very good.
https://www.raspberrypi.org/downloads/raspbian/
I strongly suggest you use docker, it will make you life much easier.
Upvotes: 1