Install Chocolatey The Package Manager for Windows
Install Chocolatey The Package Manager for Windows
Chocolatey is a package manager for Windows operating systems. It is a free and open-source tool that simplifies the process of installing, updating, configuring, and removing software applications and packages on Windows computers. Follow the below steps to install Chocolatey.
Change the execution policy of PowerShell
- Open windows PowerShell as Administrator and change the execution policy of powershell by running the below command. Accept the change by pressing ‘Y’.
1
2
Set-ExecutionPolicy AllSigned
Install Chocolatey.
1
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
Install ‘sed’ - A powerfull and versatile text-processing tool and command-line utility
1
2
choco install sed
This post is licensed under CC BY 4.0 by the author.