1. Open PowerShell with admin rights
2. Now run the following command:
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'))
3. Wait a few seconds for the command to complete.
4. If you don't see any errors, you are ready to use Chocolatey! Type choco or choco -? now, or see Getting Started for usage instructions.
# Chocolatey is a package management software for Windows operating system.
# With chocolatey, a user can install a lot of software packages for use through out the windows machine.
# if those are available on the chocolatey repository.
# Just like Brew for MacOS, use Chocolatey...
# Download and install chocolatey from https://chocolatey.org/install
# Open Your command prompt or Powershell with administrator rights
# Now you can run any command. Try the following commands:
# You can install the Python executable with just one command
$ choco install python
# Or specific version
$ choco install python --version <version>
# You can install the nodejs executable with just one command
$ choco install nodejs
# Or specific version
$ choco install nodejs --version <version>
# You can install the Java Development Kit (JDK) with just one command
$ choco install jdk11
# So with this package manager, we see how easy it is to get, install or update software without any hassel. Hurray!
# For more info visit https://chocolatey.org/
// Chocolatey is a package management software for Windows operating system.