Home >System Tutorial >LINUX >Bonus: Windows package management system Chocolatey
Chocolatey is the next command line package management software for Windows. Simply put, this is Windows’ apt-get. If you are used to Linux operating methods and really want to use it to control Windows, please give it a try. Chocolatey, a package management system, currently contains nearly 500 commonly used software.
The installation is very simple. Open the command line interface, paste the following line and press Enter:
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('http://bit.ly/psChocInstall'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin
Usage is also simple:
Query whether the program is in the database: clist
Installer:cinst
The above is the detailed content of Bonus: Windows package management system Chocolatey. For more information, please follow other related articles on the PHP Chinese website!