【Tool】Windows软件包管理器——chocolatey
在各种linux
发行版都有相应的软件包管理器,记得CentOs
下有yum
,Ubuntu
下有apt
。那windows下呢?有没有这么方便的东西?不要让我们寻找软件时都得去搜索引擎去寻找软件的官网,虽然windows
系的软件安装已经足够方便了。
答案是肯定的,那就是chocolatey
系统要求
- Windows 7+ / Windows Server 2003+
- PowerShell v2+
- .NET Framework 4+
- 如果没安装,安装程序就会尝试安装.net framework4.0
安装
-
首先,以管理员的身份运行
PowerShell
-
使用PowerShell安装。
使用
PowerShell
,您必须确保Get-ExecutionPolicy
不受限制(Restricted)。
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'))
等待安装完成。
常用命令
1.安装
choco install packagename
2.卸载
choco uninstall packagename
3.搜索软件包
这个命令就多了
list
、search
、find
4.帮助
查看命令功能解释:
choco [command] -help
- 原文作者:Garfield
- 原文链接:http://www.randyfield.cn/post/2021-03-06-chocolatey/
- 版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议进行许可,非商业转载请注明出处(作者,原文链接),商业转载请联系作者获得授权。