layout | title |
---|---|
post |
Installing Chocolatey on Windows 10 |
Chocolatey is a package manager for Windows (like apt-get or yum but for Windows). It was designed to be a decentralized framework for quickly installing applications and tools that you need. It is built on the NuGet infrastructure currently using PowerShell as its focus for delivering packages from the distros to your computer.
A quick warning about executing scripts found on the internet, don't do it. ...unless you have reviewed the script and are comfortable with it's contents.
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
Now that Chocolatey is installed we can use the choco command to install all types of packages. We will dive more into Chocolatey later, when we setup our own Chocolatey feed.
choco install $PackageName
choco upgrade chocolatey
- Chocolatey Documentation: Install Chocolatey