.net core raspberry pi 3 Error: Download failed

.net core raspberry pi 3 Error: Download failed

我尝试按照下面的指南在我的 raspberry pi 3 上安装 .net 核心:

https://www.microsoft.com/net/core#debian

脚本告诉我安装如下:

dotnet_install: Error: Unable to locate libunwind. Install libunwind to continue
dotnet_install: Error: Unable to locate gettext. Install gettext to continue

我使用 apt-get install 安装它们,一切正常:

sudo apt-get install libunwind-dev
sudo apt-get install gettext

但运气不好,当我 运行 低于 :

sudo curl -sSL https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.sh | bash /dev/stdin --version 1.0.0-preview1-002702 --install-dir ~/dotnet

我得到了:

dotnet_install: Error: Download failed

有没有遗漏的?

请使用最后一个有效的 URL:

curl -sSL https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0-preview1/scripts/obtain/dotnet-install.sh | bash /dev/stdin --version 1.0.0-preview1-002702 --install-dir ~/dotnet

并且在Raspberry Pi 2上最新的Raspbian下载安装成功(我觉得Raspberry Pi 3应该没有问题)。

但是安装成功后,出现错误:

bash: dotnet: cannot execute binary file: Exec format error

我认为这是因为 ARM 架构,因为目前只支持 amd64 (x64)。