Chocolatey
提示
Chocolatey 仅可在 Windows 平台使用
介绍
Chocolatey 是 Windows 下的包管理器,只需一行命令就能够完全自动化安装软件。
安装
- 命令行安装
- 图形安装
- 使用管理员模式运行 PowerShell
- 键入命令
PowerShell
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 -v
出现类似0.10.15
内容表示安装成功
提示
Chocolatey 仅支持命令行安装
基本使用
注意
使用 Chocolatey 时需要管理员模式运行 PowerShell
你可以在 https://chocolatey.org/packages 找到你需要的程序
- 使用管理员模式运行 PowerShell
- 键入命令
PowerShell
choco install powershell-core
--install-arguments='"ADD_EXPLORER_CONTEXT_MENU_OPENPOWERSHELL=1
REGISTER_MANIFEST=1 ENABLE_PSREMOTING=1"'
- 控制台会出现如下内容,请键入 A 并回车
PowerShell
Note: If you don't run this script, the installation will fail.
Note: To confirm automatically next time, use '-y' or consider:
choco feature enable -n allowGlobalConfirmation
Do you want to run the script?([Y]es/[A]ll - yes to all/[N]o/[P]rint): A
- 安装完毕之后,在搜索框中键入
PowerShell
出现如图所示内容则安装成功