6

I saw this post and successfully added curl to my Windows command prompt as instructed.

However, when I attempted to run curl --compressed, it says:

"the installed libcurl version doesn't support this".

Is there something that I am missing? Most of the other commands I have tried work, so I am not sure what more I need to do.

derigible
  • 163
  • 1
  • 1
  • 5

3 Answers3

3

Download cURL from here and if required, get the libcurl.dll as well.

Karan
  • 55,103
  • 20
  • 117
  • 188
1

That depends on how cURL was compiled (i.e. which options were selected, which libraries were involved, ...).

You could compile cURL yourself ensuring the options you need are enabled but I wouldn't recommended (it's a lengthy process and doesn't always end up well). If you need that option the one from here is the one I use. At the time of writing the version available there is 7.24 and at least curl_vista.exe supports that option.

Xandy
  • 3,470
  • 21
  • 28
0

I also use curl tool from MinGW64 - Minimalist GNU for Windows - brings a lot of other useful utilities. Just remember to modify your PATH to have MinGW64 bin folder higher in priority list than System32 folder and hopefully it will solve the issue.

KubaS
  • 1