Monday, December 16, 2019

Installing dotnet core SDK in Ubuntu using snap

To view currently supported version of dotnet-dsk, do:
$: sudo snap install dotnet-sdk

Installing latest stable:
$: sudo snap install dotnet-sdk

dotnet will not be available in the command line as snap creates dotnet-sdk.dotnet. Let us create an alias to make it convenient:

$: sudo snap alias dotnet-sdk.dotnet dotnet

No comments:

QNX: Running a function at specific interval using timer interrupt

#include <iostream> #include <csignal> #include <ctime> #include <cerrno> #include <cstring> #include <unis...