Check if You Already Have cURL
You might not need to install anything:- If you are using Windows Server 2019 or Windows 10 version 1803 or later,
curl
is likely already installed. - Default path:
C:\Windows\System32\curl.exe
Manual Installation
1. Download and Extract
- Download
curl
for Windows: https://curl.se/windows - Extract the ZIP package.
- Locate
curl.exe
, usually under thebin\
folder.
2. Choose a Permanent Folder
Recommended folders:C:\curl
C:\Program Files\curl
C:\Program Files\tools
Do not move the folder once placed.
3. Add to PATH
Open a Windows PowerShell or CMD as Administrator.
Steps:
- Press
Win
and type environment - Select Edit the system environment variables
- Click on Environment Variables
- Under System variables, select
Path
and click Edit - Click New and add the path (e.g.,
C:\curl
) - Click OK and restart your console
If the folder is not in PATH, you’ll need to navigate manually every time you use
curl
.