windows 下的软件包管理

windows 下的软件包管理

如果你有用 linux 或 mac 的经验,你肯定非常喜欢的软件包管理系统的安装方式,只需要一句命令行就可以安装你想要的软件,减少你找软件的麻烦,而且还能支持软件的更新。常见的有 debian 和 ubuntu 下的 apt,centerOS 下的 Yum;在 mac 下也有 brew、Fink 和 macports 可以选择。现在在 windows 下也终于有这样的工具了:chocolatey

安装 Chocolatey

官网首页有给出安装说明:http://chocolatey.org/
安装:
把下面的贴到命令行下(用 powershell 来执行安装)

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

帮助

  1. 查看帮助:choco ?
  2. 安装软件:choco install 或 cinst
    安装 git,cinst git
  3. 查看软件包: choco list