码迷,mamicode.com
首页 > Web开发 > 详细

centos 下安装.net core

时间:2016-05-21 14:26:16      阅读:376      评论:0      收藏:0      [点我收藏+]

标签:

先要安装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

标签:

原文地址:http://www.cnblogs.com/weiweictgu/p/5512020.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!