安装模块PowerShellGet时发出警告

时间:2018-09-03 11:59:12

标签: powershell

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

Install-PackageProvider Nuget –force –verbose

然后退出,尝试运行以下命令:

Install-Module –Name PowerShellGet –Force –Verbose

执行此操作时,出现错误: Error with install-module

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

是否可以解决此问题?

1 个答案:

答案 0 :(得分:0)

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

Register-PSRepository -Name “PSGallery” -SourceLocation “https://www.powershellgallery.com/api/v2/" -InstallationPolicy Trusted