windows下的brew--->Chocolatey

回到四川,又开始用windows罗,不是很习惯,习惯性的逛开源社区发现一个好动,就是chocolatey

如果使用过Linux的话,一定会被其简洁的软件包管理系统所折服。在Linux世界中,安装一个软件不需要在浏览器中寻找软件的官网,然后将其下载下来,然后双击进行安装。只需要一条简单的命令,就可以完成搜索、安装、更新、卸载等所有操作。例如Debian和Ubuntu中的apt-get命令,Fedora的yum以及新的dnf命令,还有Arch中的pacman。

官网:https://chocolatey.org/

1.安装

官网文档:https://chocolatey.org/install
1.以管理员的模式运行cmd 或者 运行PowerShell

cmd:
@"%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"

PowerShell:
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

2.检查

尝试命令 choco 或者 choco -? 是否成功 

3.一些玩法

参考文档
chocolatey配置玩法:
https://chocolatey.org/docs/commands-config

3.1改变本地安装位置:

 choco config set cacheLocation c:\temp\choco

3.2安装软件():
chocolatey安装玩法:
https://chocolatey.org/docs/commands-install

choco install sysinternals
choco install notepadplusplus googlechrome atom 7zip
choco install notepadplusplus --force --force-dependencies
choco install notepadplusplus googlechrome atom 7zip -dvfy
choco install git --params="'/GitAndUnixToolsOnPath /NoAutoCrlf'" -y
choco install nodejs.install --version 0.10.35
choco install git -s "'https://somewhere/out/there'"
choco install git -s "'https://somewhere/protected'" -u user -p pass

更多玩法请参考文档哦,个人觉得吧,确实不错的东西,但是我更喜欢区ubuntu玩。希望能给各位提供帮助。

你可能感兴趣的:(Linunx,全栈)