Is .NET Core ready to run on Raspberry PI 3?

2019-02-01 06:34发布

I can find a lot of obsolete threads but a lot have been changed the last months.

Is there currently any possibility to run .NET Core and/or ASP.NET Core on Raspberry with Raspbian (currently Jessie) without Mono? Or what do I need?

I can find some dnvm samples, but I cannot find one tutorial which is up to date and uses the dotnet cli. I know Windows 10 IoT is planned for v1.1.0 but I can find nothing for ARM based CPUs. Also there is no Docker sample for ASP.NET Core on Raspbian...

Even http://dot.net shows only a Homebrew install command but how to install .NET Core 1.0.1 on Raspbian / Linux without Homebrew.

4条回答
成全新的幸福
2楼-- · 2019-02-01 06:46

.NET Core is scheduled to run on ARM based OS like Raspian / Windows 10 IoT for Q4 2016 / Q1 2017. https://blogs.msdn.microsoft.com/dotnet/2016/07/15/net-core-roadmap/

At this point of time I think you can follow the installations for Debian but you should get a exec format error IIRC.

Edit 3/10/17: first official instruction is online now: https://github.com/dotnet/core/blob/master/samples/RaspberryPiInstructions.md

查看更多
时光不老,我们不散
3楼-- · 2019-02-01 06:56

Officially for the 1.0 release, no. The only runtimes available for ARM is currently the Windows ones.

Also, Homebrew is for OSX. What you want to be looking at in the future for on Raspbian is the Debian instructions.

查看更多
▲ chillily
4楼-- · 2019-02-01 06:59

Now you CAN run dotnet core applications on Raspberry PI 3, with no Mono installed at all.

I managed to run complex app on headless Ubuntu Server 16.04 and on Ubuntu Mate 16.04.

All you have to do is to get the build output of cross compilation of coreclr and corefx, remove private and pre-compiled dlls, and put your managed dlls on the PI along with them.

Then you can run it using "corerun" executable.

(I posted a video on that one but it seems to be illegal to post it here)

Anyhow, to answer your question : it is now possible to run dotnet core apps on RPI3, although it isn't released yet.

查看更多
Fickle 薄情
5楼-- · 2019-02-01 07:04

You can get a (seemingly) stable build of .Net Core on Raspberry Pi 2 or 3 by following Peter Marcu's instructions here: https://github.com/dotnet/core/blob/master/samples/RaspberryPiInstructions.md

You don't need to use "corerun", you can use "dotnet". You build on your dev machine and copy to your Pi.

Update: I realise now the original question specifically mentioned Rasbian (Jessie). The method at that link requires Ubuntu 14.04 or 16.04. But if that isn't a problem I think you should be good to go.

查看更多
登录 后发表回答