Is there a way to install cURL in Windows in order to run cURL commands from the command prompt?
相关问题
- Inheritance impossible in Windows Runtime Componen
- Google Apps Script: testing doPost() with cURL
- how to get running process information in java?
- Is TWebBrowser dependant on IE version?
- Can I skip certificate verification oracle utl_htt
相关文章
- 如何让cmd.exe 执行 UNICODE 文本格式的批处理?
- 怎么把Windows开机按钮通过修改注册表指向我自己的程序
- Warning : HTML 1300 Navigation occured?
- Bundling the Windows Mono runtime with an applicat
- Windows 8.1 How to fix this obsolete code?
- Compile and build with single command line Java (L
- CosmosDB emulator can't start since port is al
- How to print to stdout from Python script with .py
For anyone looking for a quick solution, after having standard installed cygwin but finding out curl did not work on a win 10 x64 platform:
Downloading this retired repository, extracting it and running:
Worked like a charm. I assume it has the pre-installed option for curl.
I am may be bit late for this, but I am able to resolve my issue of curl at cmd for windows 10.
I got help from below video tutorial https://www.youtube.com/watch?v=qlTVMuONazs
Here is some explanation
Step 1: go to https://curl.haxx.se/download.html
Step 2: Search "Win64 - Generic" and download "Win64 x86_64 7zip" by "Darren Owen"
Step 3: unzip the download file and install the certificate "ca-bundle.crt" do not touch curl.exe
Step 4: in windows go to "Control Panel" -> "System" -> "Advance system settings " Step 5: click on Envirnoment variables
Step 6: In System variable click on "Path" and paste the path of the file folder in my case it is "C:\curl\curl_7_53_1_openssl_nghttp2_x64"
And you are done.
Don't Forgot to restart you system for one time
If you have
Git
installed on windows you can use theGNU Bash
.... it's built in.https://superuser.com/questions/134685/run-curl-commands-from-windows-console/#483964
Create batch file in windows and enjoy with cURL in windows :)