pkfox Posted February 12, 2019 Posted February 12, 2019 (edited) Hi all, I have a Friendlyarm nanopi M4 running armbian, I have tried to install dotnet core without success - anyone here managed it ? I followed a tutorial but when I get to the apt-get install part I see this error Couldn't find any package by glob 'dotnet-sdk-2.2' Edited February 12, 2019 by pkfox spelling
Oleksii Posted February 13, 2019 Posted February 13, 2019 16 hours ago, pkfox said: Hi all, I have a Friendlyarm nanopi M4 running armbian, I have tried to install dotnet core without success - anyone here managed it ? I followed a tutorial but when I get to the apt-get install part I see this error Couldn't find any package by glob 'dotnet-sdk-2.2' Hi @pkfox, First of all, here comes official support matrix: https://github.com/dotnet/core/blob/master/release-notes/2.2/2.2-supported-os.md Seems, debian package source is not maintained for linux arm64, so we should install .net core manually from here: https://dotnet.microsoft.com/download/dotnet-core/2.2 As you can see, only .net core 2.2 runtime has relevant arm64 distribution and aspnet core 2.2 only present for 32-bit. However, according to this info https://docs.microsoft.com/en-us/dotnet/core/linux-prerequisites?tabs=netcore30 both will be supported starting from netcore3.0! Personally, I installed latest officially announced netcore 3.0 preview2 sdk from here https://dotnet.microsoft.com/download/dotnet-core/3.0 and use it for development on daily basis. Nightly builds for all "released" major versions can be found here - https://github.com/dotnet/core-setup/blob/master/README.md#daily-builds Best regards, Oleksii
pkfox Posted June 19, 2019 Author Posted June 19, 2019 On 2/13/2019 at 10:54 AM, Oleksii said: Hi @pkfox, First of all, here comes official support matrix: https://github.com/dotnet/core/blob/master/release-notes/2.2/2.2-supported-os.md Seems, debian package source is not maintained for linux arm64, so we should install .net core manually from here: https://dotnet.microsoft.com/download/dotnet-core/2.2 As you can see, only .net core 2.2 runtime has relevant arm64 distribution and aspnet core 2.2 only present for 32-bit. However, according to this info https://docs.microsoft.com/en-us/dotnet/core/linux-prerequisites?tabs=netcore30 both will be supported starting from netcore3.0! Personally, I installed latest officially announced netcore 3.0 preview2 sdk from here https://dotnet.microsoft.com/download/dotnet-core/3.0 and use it for development on daily basis. Nightly builds for all "released" major versions can be found here - https://github.com/dotnet/core-setup/blob/master/README.md#daily-builds Best regards, Oleksii Hi and sorry for the late response ( I forgot I'd posted ) I have it all installed now. What sort of apps are you writing ? I would like to use the M4 as a WCF/WEB API server if possible purely for prototyping - thanks for your help
Recommended Posts