Installing .NET Core 3.0 on a Raspberry Pi
Friday, February 8, 2019
I went into this exercise thinking this would be a tough challenge. However, it turns out to be a very simple process. It’s just prepare, download, unpack, configure, and roll with it.
Prepare First make sure that your Raspberry Pi is running the latest software updates with this command: sudo apt-get update && sudo apt-get upgrade
Once that is done, we need to install libunwind8 sudo apt-get install libunwind8
That’s it for prepare.…more