Raspberry Pi 4 上的 .Net Core 和 Raspbian?

2024-04-14

是否可以安装.Net Core树莓派4 with Raspbian?我发现了一些关于 Raspberry Pi 3 上的 .Net Core 的说明,例如(https://github.com/dotnet/core/blob/master/samples/RaspberryPiInstructions.md https://github.com/dotnet/core/blob/master/samples/RaspberryPiInstructions.md)或使用 Linux 的 Raspberry Pi 上的 .Net Core。我已经安装了 Visual Studio Code,现在我想安装 .Net Core。如果您安装了.Net Core,请分享您的经验和方法树莓派4 with Raspbian。谢谢。


从以下位置下载 .Net Core 3.1 SDKHERE https://dotnet.microsoft.com/download/dotnet-core/3.1

制作目录:

sudo mkdir /usr/share/dotnet/

环境路径:

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

或者只是一个符号链接

sudo ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet

通过提取复制:

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

确认安装:

dotnet --info

你可以找到详细信息Here http://reddyinfosoft.blogspot.com/2020/01/how-to-install-net-core-31-on-raspberry.html

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

Raspberry Pi 4 上的 .Net Core 和 Raspbian? 的相关文章

随机推荐