Sdk: Is .net core support ARM

Created on 6 Dec 2016  路  4Comments  路  Source: dotnet/sdk

I have try to install .net core on my ubuntu16.04 on RASPBERRI PI
image

But i got the errors:
image

Is that .net core not support arm arch?If i want to install or deploy my asp.net core project on RASPBERRY PI (ubun16.04 System) ,what should i do?

Most helpful comment

If you ship it in a container, then it will still not be supported. The underlying host of Docker will also be an ARM CPU.

All 4 comments

Is that .net core not support arm arch?

Right now, no it does not official support. It is very much a work in-progress to get the CoreCLR running on ARM32: https://github.com/dotnet/coreclr/issues?utf8=%E2%9C%93&q=is%3Aissue%20ARM32

It is possible to build it and run on a Raspberry Pi at this point https://github.com/dotnet/coreclr/issues/3977#issuecomment-260608276, but to my knowledge it has not been packaged.

You should be able to run it if you build CoreCLR from the latest source.

Thanks @vcsjones

You could use Docker and ship your .netCore app as a container

If you ship it in a container, then it will still not be supported. The underlying host of Docker will also be an ARM CPU.

Was this page helpful?
0 / 5 - 0 ratings