首页 > 代码库 > windows下的包管理软件

windows下的包管理软件

在开源的世界里,linux,nodejs,ruby这些都有好的包管理工具,让大家使用起来更简单,windows下其实也有。
Chocolatey,主页在Chocolatey

安装如下:

@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString(‘https://chocolatey.org/install.ps1‘))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin

安装完成就可以使用,choco install 程序名
如choco install Atom
搜索软件,choco list 程序名

好了,自己多试试吧,现在有不少开源软件已经可以使用这种方式安装了。

windows下的包管理软件