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

在Linux中安装ASPNET.Core3.0运行时

时间:2019-09-29 09:26:05      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:信息   bin   运行时   asp   华为   com   microsoft   使用   http   

 

# 以下示例适用于x64位runtime v3.0.0
mkdir /runtimes
cd /runtimes
wget https://download.visualstudio.microsoft.com/download/pr/b0c44e05-b7a1-4221-94ec-a0c0d3a11eed/afc61567dd6db8f097e244871889458c/aspnetcore-runtime-3.0.0-linux-x64.tar.gz
mkdir aspnetcore-runtime-3.0.0-linux-x64
tar -zxvf aspnetcore-runtime-3.0.0-linux-x64.tar.gz -C /runtimes/aspnetcore-runtime-3.0.0-linux-x64
ln -sf /runtimes/aspnetcore-runtime-3.0.0-linux-x64/dotnet /usr/local/bin

# 安装完成,查看版本信息
dotnet --info

 

 

# 以下示例适用于arm64位runtime v3.0.0,本人使用华为鲲鹏系列
mkdir /runtimes
cd /runtimes
wget https://download.visualstudio.microsoft.com/download/pr/5cbf9f66-7945-43e2-9b7c-351f900e9893/2fcd48f3d4db99283ebdb46daf9bacec/aspnetcore-runtime-3.0.0-linux-arm64.tar.gz
mkdir aspnetcore-runtime-3.0.0-linux-arm64
tar -zxvf aspnetcore-runtime-3.0.0-linux-arm64.tar.gz -C /runtimes/aspnetcore-runtime-3.0.0-linux-arm64
ln -sf /runtimes/aspnetcore-runtime-3.0.0-linux-arm64/dotnet /usr/local/bin

# 安装完成,查看版本信息
dotnet --info

 

在Linux中安装ASPNET.Core3.0运行时

标签:信息   bin   运行时   asp   华为   com   microsoft   使用   http   

原文地址:https://www.cnblogs.com/chenyinxin/p/11605828.html

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