安装模块PowerShellGet时发出警告

问题描述 投票:0回答:1

在安装PowerShellGet时,我执行以下操作:

Install-PackageProvider Nuget –force –verbose

然后我退出,尝试运行以下内容:

Install-Module –Name PowerShellGet –Force –Verbose

当我这样做时,我得到错误:Error with install-module

当我尝试安装其他模块时也会出现此错误,例如MSOnline,Azure等。我有最新版本的Powershell以及必要的模块。我觉得原因是PowershellGet文件。

有没有办法解决这个问题?

powershell
1个回答
0
投票

您需要在安装PowerShellGet之前注册PowerShell存储库。试试这个

Register-PSRepository -Name “PSGallery” -SourceLocation “https://www.powershellgallery.com/api/v2/" -InstallationPolicy Trusted
© www.soinside.com 2019 - 2024. All rights reserved.