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

But i got the errors:

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?
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.
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.