正在下载 https://github.com/PowerShell/PowerShell/releases/download/v7.3.4/PowerShell-7.3.4-win-x64.msi 执行此命令时发生意外错误: InternetOpenUrl() failed. 0x80072efd : unknown error
时间: 2023-06-21 19:18:39 浏览: 189
https://github.com/PlayVoice/so-vits-svc 预训练文件
这个错误通常是由于网络连接问题导致的。您可以尝试以下几种方法:
1. 确保您的网络连接正常,可以尝试使用浏览器访问 https://github.com/PowerShell/PowerShell/releases/download/v7.3.4/PowerShell-7.3.4-win-x64.msi 确认是否能够正常下载。
2. 检查您的防火墙或杀毒软件是否阻止了下载。您可以暂时关闭防火墙或杀毒软件,然后再次尝试下载。
3. 尝试使用代理服务器进行下载。您可以在命令行中设置代理服务器,如下所示:
```
set http_proxy=http://proxyserveraddress:port
set https_proxy=https://proxyserveraddress:port
```
其中,`proxyserveraddress` 是代理服务器地址,`port` 是代理服务器端口号。
4. 如果您使用的是代理服务器,您还可以尝试在命令行中设置 `--source` 参数,指定使用一个可用的源来下载:
```
winget install --id Microsoft.Powershell --source winget --source-url https://winget.azureedge.net/cache/Microsoft.Powershell_7.3.4.0_x64.msixbundle
```
其中,`https://winget.azureedge.net/cache/Microsoft.Powershell_7.3.4.0_x64.msixbundle` 是一个可用的下载源。
希望以上方法能够帮助您解决问题。
阅读全文