Windows 安装DotNet Core运行时库

1、安装Windows Management Framework 3.0或5.1
2、安装choco,下载地址https://chocolatey.org/install或通过PowerShell执行以下代码。

Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

2.1安装过程中,提示PowerSell使用“1”个参数调用“DownloadString”时发生异常:“操作超时”或“基础连接已经关闭: 发送时发生错误”时,需要确认PowerSell版本是否为3.0及以上;
2.2安装过程中,提示“请求被中止: 未能创建 SSL/TLS 安全通道。”需要执行以下代码。

[System.Net.ServicePointManager]::SecurityProtocol=[System.Net.SecurityProtocolType]::Tls12
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

3、成功安装choco后,需要安装dotnetcore-windowshosting

--安装
choco install dotnetcore-windowshosting --version=2.2.3
--卸载
choco uninstall dotnetcore-windowshosting --version=2.2.3
--强制重新安装
choco uninstall dotnetcore-windowshosting --version=2.2.3  --force

你可能感兴趣的:(core,choco)