Chocolatey is a third-party package manager for the Windows console. You can check how to perform the installation at the link.
Basically, we must run cmd as administrator:
And paste the following line here:
@"%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"
This way we will have the choco package manager installed. We will be able to install programs using the command:
choco install program