.Net Core on Raspberry Pi 4 with Raspbian?

泄露秘密 提交于 2020-01-19 01:35:47

问题


Is it possible to install .Net Core on Raspberry Pi 4 with Raspbian? I found a number of instructions about .Net Core on Raspberry Pi 3 e.g. (https://github.com/dotnet/core/blob/master/samples/RaspberryPiInstructions.md) or .Net Core on Raspberry Pi with Linux. I have already installed Visual Studio Code and now I want to install .Net Core. Please share your experience and method if you installed .Net Core on Raspberry Pi 4 with Raspbian. Thanks.


回答1:


Download .Net Core 3.1 SDK from HERE

Make Directory:

sudo mkdir /usr/share/dotnet/

PATH to environment:

export PATH=$PATH:/usr/share/dotnet/dotnet 
export DOTNET_ROOT=/usr/share/dotnet/dotnet

Copy by Extracting:

sudo tar zxf dotnet-sdk-3.1.100-linux-arm.tar.gz -C /usr/share/dotnet/

Confirm Installation:

dotnet --info

you can find in detail from Here



来源:https://stackoverflow.com/questions/59078275/net-core-on-raspberry-pi-4-with-raspbian

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!