Pavlo Kurianov
Published © MIT

.NET on a Raspberry Pi

Learn how to install Raspberry Pi OS and .NET 10 on Raspberry Pi

BeginnerProtip1 hour4,065
.NET on a Raspberry Pi

Things used in this project

Story

Read more

Code

Availability .NET command

BatchFile
Code needs to make dotnet command available after reboot raspberry
# Run nano editor to edit the .bashrc
nano ~/.bashrc
 
# Copy the commands below to the .bashrc
export DOTNET_ROOT=$HOME/.dotnet
export PATH=$PATH:$HOME/.dotnet
 
# Run this command so the terminal session will use the new settings
source ~/.bashrc

Credits

Pavlo Kurianov
1 project • 0 followers

Comments