centos 下安装.net core

Posted 漂泊雪狼的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos 下安装.net core相关的知识,希望对你有一定的参考价值。

先要安装libunwind,

libunwind库为基于64位CPU和操作系统的程序提供了基本的堆栈辗转开解功能,32位操作系统不要安装。其中包括用于输出堆栈跟踪的API、用于以编程方式辗转开解堆栈的API以及支持C++异常处理机制的API。

The primary goal of this project is to define a portable and efficient C programming interface (API) to determine the call-chain of a program.

 

wget http://download.savannah.gnu.org/releases/libunwind/libunwind-1.1.tar.gz
tar -xf libunwind-1.1.tar.gz
cd libunwind-1.1
./configure
make
make install

  

执行命令:

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
sudo ln -s ~/dotnet/dotnet /usr/local/bin

mkdir hwapp
cd hwapp
dotnet new

dotnet restore
dotnet run

  

以上是关于centos 下安装.net core的主要内容,如果未能解决你的问题,请参考以下文章

CentOS7下安装.NET Core SDK 2.2

Centos8 下部署 ASP.net Core 程序

CentOS7下Docker与.net Core 2.2

CentOS7下使用Docker容器化.net Core 2.2

.Net Core部署Linux系统(CentOS7.6)

实践.Net Core在Linux环境下的第一个Hello World