在 CentOS 上安装 .NET SDK 或 .NET 运行时
参考URL地址:
https://docs.microsoft.com/zh-cn/dotnet/core/install/linux-centos
建议采用 脚本安装 方式
仅安装 运行时环境 即可
目前版本为 6.0.1
脚本安装失败,可以使用离线安装SDK环境(无需安装运行时)
参考地址:https://learn.microsoft.com/zh-cn/dotnet/core/install/linux-scripted-manual#manual-install
在.NET 6.0.1及以上版本使用 System.Drawing 需要安装 libgdiplus 支持
.NET 6.0.1及以上版本官方不再建议使用 System.Drawing ,此组件为临时方案
更新包
yum install -y epel-release
查找包
yum whatprovides libgdiplus # 输出以下内容,具体以显示为准,注意版本号 # libgdiplus-2.10-10.el7.x86_64 : An Open Source implementation of the GDI+ API.
安装包
yum install -y libgdiplus-2.10-10.el7.x86_64