.net core .net core raspberry pi 3错误:下载失败

.net core .net core raspberry pi 3错误:下载失败,.net-core,raspberry-pi3,.net Core,Raspberry Pi3,我尝试按照下面的指南在我的raspberry pi 3上安装.net core: 脚本告诉我安装以下内容: 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 ap

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

脚本告诉我安装以下内容:

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)