在安装PowerShellGet时,我执行以下操作:
Install-PackageProvider Nuget –force –verbose
然后我退出,尝试运行以下内容:
Install-Module –Name PowerShellGet –Force –Verbose
当我尝试安装其他模块时也会出现此错误,例如MSOnline,Azure等。我有最新版本的Powershell以及必要的模块。我觉得原因是PowershellGet文件。
有没有办法解决这个问题?
您需要在安装PowerShellGet之前注册PowerShell存储库。试试这个
Register-PSRepository -Name “PSGallery” -SourceLocation “https://www.powershellgallery.com/api/v2/" -InstallationPolicy Trusted