Linux CentOS 7 离线安装.NET环境

下载

下载.NET
例如:
aspnetcore-runtime-6.0.15-linux-x64.tar.gz

复制

复制到如下目录:
/usr/local/dotnet/aspnetcore-runtime-6.0.15-linux-x64.tar.gz

解压

cd /usr/local/dotnet/
tar -zxvf aspnetcore-runtime-6.0.15-linux-x64.tar.gz

创建软链接

相当于windows下的快捷方式
ln -s /usr/local/dotnet/dotnet /bin

编辑 /etc/profile 文件

vim /etc/profile
添加如下内容:
export PATH=$PATH:/usr/local/dotnet
export DOTNET_ROOT=/usr/local/dotnet
使立即生效:
source /etc/profile

验证是否安装成功

在任意目录输入以下命令:
dotnet --info
如图:

posted @ 2023-04-21 16:53  0611163  阅读(531)  评论(0编辑  收藏  举报