Once you have the Raspberry Pi up and running with a microSD installed as described here – Setup a Raspberry Pi – you can install DotNet Core by issuing the following commands: –
sudo curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --channel STS
echo 'export DOTNET_ROOT=$HOME/.dotnet' >> ~/.bashrc
echo 'export PATH=$PATH:$HOME/.dotnet' >> ~/.bashrc
source ~/.bashrcAfter running these commands, DotNet should be installed and configured to enable it to be run from the command line. You can test out the version by entering the following: –
dotnet --version



