Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tried to enable curl on cygwin but it says bash: curl: command not found

How do I install curl on cygwin?

share|improve this question

7 Answers

up vote 14 down vote accepted

In the Cygwin package manager, click on curl. Yes, it's that simple.

share|improve this answer
7  
It's not working. It looks like it's not that simple afterall ... – Notitze Jan 31 '11 at 13:24
1  
I have to agree. I don't have anything called the "cygwin package manager." Maybe that's equivalent to the answer below, but that wasn't obvious to many of us. – fool4jesus Mar 26 at 10:40
1  
Yeah, the "package manager" is the setup.exe – Casebash May 1 at 3:42

I just encountered this.

1) Find the cygwin setup.exe file from http://cygwin.com/ and run it.
2) Click/enter preferences until you reach the "Select Packages" window. (See image)
3) Click (+) for Net
4) Click the entry for curl. (Make sure you select the checkbox for the Binary)
5) Install.
6) Open a cygwin window and type curl.exe (should be available now).

Cygwin package manager

share|improve this answer
1  
Lovely image! \o/ – Peteter Nov 22 '12 at 20:17
2  
This helped me out considerably. I was having the same issue and was getting absolutely nowhere with the Windows CMD prompt. Thank you very much. – somecallmejosh Jan 4 at 19:33

In order to use the command-line version of curl, you need the curl executable. So, run the Cygwins Setup.exe, and select curl (under Net->curl). That one uses libcurl3, which is located in Libs->libcurl3. But libcurl3 will be pulled in as a dependency if it's not already installed. So, just select Net->curl and you're good to go.

share|improve this answer
Not sure why my search in the setup window did not show the Net->curl ... now it works, thank you! – Notitze Jan 31 '11 at 14:22
Thanks for the descriptive answer. – Amir Aug 24 '11 at 15:12

I searched for curl on the cygwin packages part of their home page.

I found this link http://cygwin.com/packages/curl/. But that wasn't helpful because I couldn't download anything

So I searched for the curl-7.20.1-1 cygwin on Google. I found this helpful site mirrors.xmission.com/cygwin/release/curl/

That site had a link to download curl-7.20.1-1.tar.bz2. I unzipped it using 7zip. It unzips it into ./user/bin/ or something so I had to find curl.exe in the local /usr/bin folder and put it into my /bin folder of c:\cygwin

Finally I could use cURL!

This drove me crazy. I hope it helps someone!

share|improve this answer
Next time use cygwin's setup.exe it will just let you install packages from there. You can also get a program called cyg-apt which works like Debian/Ubuntu's apt-get. code.google.com/p/cyg-apt – Slomojo Sep 5 '10 at 20:28
1  
I tried to run setup.exe, but I couldn't find curl in the list. I don't know what I did wrong. – Drew LeSueur Sep 12 '10 at 9:28
I tried it later, and this time I found cURL in the list. – Drew LeSueur Sep 19 '10 at 5:26

I just ran into this.

If you're not seeing curl in the list (see ibaralf's screenshot), then you may have out-of-date cygwin sources. In one of the screens in cygwin's setup.exe wizard, you have the option to "Install from Internet" or "Install from Local Directory". If you have the "Install from Local Directory" option enabled, then you may not see curl in the list. Switch to "Install from Internet" and select a mirror and then you should see curl.

share|improve this answer

You can try:

apt-cyg install curl
share|improve this answer
apt-cyg: command not found Is this only available on newer versions of Cygwin, or is it just a package that needs installed? My version is 1.7.16. – Lo-Tan Apr 12 at 17:26
apt-cyg is a command-line installer for Cygwin which cooperates with Cygwin Setup and uses the same repository. The syntax is similar to apt-get code.google.com/p/apt-cyg – ecounysis May 17 at 17:45

For future reference:

Cygwin comes with many packages (among them curl, as you found) to install one of them you run the setup.exe program.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.