Linux | Cloud | DevOps | Scripting

Breaking

Thursday, 27 June 2019

Install curl in Windows



The name cURL stands for "Client URL". cURL (pronounced 'curl') is a computer software project providing a library (libcurl) and command-line tool (curl) for transferring data using various protocols.

Steps we need to follow:

1. Download and extract zip file
2. Create a folder in C-drive and paste curl.exe file in it.
3. Set Environment variable for curl
4. Verify curl using PowerShell

Step 1: Download and extract zip file:

On browser go to cURL official website: https://curl.haxx.se/ âž” Click on Download âž” there is a lot of stuff. But go to the last of this page, here, we can see cURL versions for Windows 64 bit.

Download curl
Fig: Download curl
Right click on the version âž” Save link as âž” Save the file.

Step 2: Create a folder in C-drive and paste curl.exe file in it:

Downloaded file is zip file âž” Extract this file âž” Open folder âž” src âž” Copy curl.exe âž” create a folder in C drive, named curl âž” paste this file in it.

So, path for curl is 'C:\curl' now.

Step 3: Set Environment variable for curl:

Windows âž” Run âž” sysdm.cpl âž” Advanced âž” Environment Variables âž” Navigate to Path in System Variables âž” Edit...

Set Environment Variables
Fig: Environment Variables
...in last paste ;C:\curl (change the path accordingly, if you have different path set) âž” OK.

Set Environment Path for curla
Fig: Set Environment Path

Step 4: Verify curl using PowerShell:

Open PowerShell âž” type curl and hit enter

This will not show any error for curl command.

Try to run 'curl www.google.com', this should display the content of google.com.

Enjoy!






No comments:

Post a Comment

Pages