How to Install Chocolatey Package Manager on Windows?
Last Updated :
23 Jul, 2025
Chocolatey is a package manager for Windows that gives you a command-line approach to install, update, and remove software. It makes managing software on a Windows PC easy and saves you time and effort.
In this article, we will show you how to install the Chocolatey package manager on Windows 11.
Prerequisites to Install Chocolatey Package Manager
- Windows 7 or later / Windows Server 2003 or later
- PowerShell v2 or later
- .NET Framework 4 or later
What is Chocolatey?
Chocolatey is a free, open-source package manager for Windows that works similarly to Apt or DNF on Linux. It is a program that installs software via the Windows command line, downloads and installs programs, checks for updates and installs them automatically when necessary.
Choco is a one-of-a-kind software management solution that enables users to create a software deployment package using PowerShell and deploy it using a variety of Windows tools such as Puppet, SCCM, Altiris, and Connectwise Automate.
Method 1: Install Chocolatey Package Manager Using PowerShell
Step 1: Press Win +S then on the search bar type "Powershell" and click on "Run as administrator"

Step 2: Type each of these commands and press the Enter key after typing each one
Set-ExecutionPolicy AllSigned

Step 3: Wait for the script to finish running. you can confirm it by running the command in a new CMD or Powershell instance.
Step 4: After installing Chocolatey, you can confirm it by running the command in a new CMD or Powershell instance.
choco -v

Method 2: Install Chocolatey Package Manager Using Command Prompt
Step 1: Press Win +S then on the search bar type "CMD" and click on "Run as administrator"

Step 2: Type the following command to install Chocolatey Package Manager
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command " [System.Net.ServicePointManager]::SecurityProtocol = 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

Step 3: Wait for the script to finish running. you can confirm it by running the command in a new CMD or Powershell instance.
Step 4: After installing chocolatey, you can confirm it by running the command in a new CMD or Powershell instance
choco -v
More Useful Software to Install with Chocolatey
- choco install vscode to install Visual Studio Code.
- choco install python to install Python.
- choco install nodejs to install Node.js.
- choco install Chrome to install Google Chrome
Conclusion
In Conclusion, We have demonstrated the process of installing Chocolatey, and the method of using it for the installation of some other valuable software on your Windows PC. Chocolatey is a useful package that can facilitate your software management and boost the speed of the process. You can see more packages at the Gallery and create your own packages if you want
Also Read
Similar Reads
How to Install Package Manager in Windows 11? Installing a package manager on Windows 11 is a convenient way to streamline your software management. One of the most popular tools for this purpose is Winget, the built-in Windows 11 package manager. With Winget, you can easily download, install, and update software via the command line, making it
5 min read
How to Install Git on Windows Using Chocolatey? Installing Git on Windows can be a simple process, especially with the help of package managers like Chocolatey. Chocolatey is a package manager for Windows that automates the installation, upgrade, and uninstallation of software. This article will guide you through the steps to install Git on Windo
2 min read
How to Install PHP Composer on Windows? Composer is essentially a package manager for PHP. You can effectively manage libraries and packages in your PHP projects by using Composer, a dependency management for PHP. Composer makes package management easier for both small and large-scale applications by automating the installation and update
3 min read
How to use Chocolatey Choco to Install GIT on Windows? Linux Users do enjoy the advantage of installing hundreds of software with a single command, so In WINDOWS we do have a WINGET package manager built in WINDOWS which is not sufficient so we have CHOCOLATEY so with this we can install most of the software from Spotify to Discord directly from the ver
1 min read
How to Install a New Package Manager in Linux Linux offers several package managers for software installation, updates, and maintenance. In Linux, every distribution comes with a package manager by default. The Debian distribution comes with APT(Advanced Package Tool), Red Hat, and its derivatives such as CentOS and Fedora use YUM package manag
4 min read
How to Install Git on Windows Command Line? Git is an open-source and free, decentralized version control system designed to handle projects of all sizes with speed and efficiency. Basically, it is a software tracking application that is commonly used to monitor projects across several teams. The best way of downloading and installing Git on
3 min read