最近发现一个Windows包管理工具choco,好像挺不错的。
使用powershell.exe安装
使用PowerShell,您必须确保Get-ExecutionPolicy不受限制。我们建议使用Bypass
绕过策略来安装东西或AllSigned
提高安全性。
Get-ExecutionPolicy
。如果返回Restricted
,则运行Set-ExecutionPolicy AllSigned
或Set-ExecutionPolicy Bypass -Scope Process
。现在运行以下命令:
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
choco
或choco -?
现在,或参见使用入门以获取使用说明。