Chocolatey window包管理工具

https://chocolatey.org/

Chocolatey window包管理工具_第1张图片
image.png

要求:
Windows 10 无要求

其它系统版本:
Windows 7+ / Windows Server 2003+
PowerShell v2+ (Not PowerShell Core yet though)
.NET Framework 4+ (the installation will attempt to install .NET 4.0 if you do not have it installed)
That's it! All you need is choco.exe (that you get from the installation scripts) and you are good to go! No Visual Studio required.

Chocolatey window包管理工具_第2张图片
image.png

Chocolatey window包管理工具_第3张图片
image.png

命令如下:

@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

image.png
choco search     搜索软件
choco list   跟 search 命令功能类似
choco install   安装软件
choco install   -version *** 安装指定版本
choco  uninstall name 卸载软件
choco version   查看安装包的版本情况
choco  upgrade    更新某个软件 
choco list -localonly        查看一下所有安装在本地的包的列表
choco list -lo       功能同上

使用cmd的时候,需要使用管理员权限

你可能感兴趣的:(Chocolatey window包管理工具)