Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 828 Bytes

curl.md

File metadata and controls

56 lines (36 loc) · 828 Bytes

What is curl

Install

CentOS

Ubuntu

  1. Update list of packages. Example:

    sudo apt update
  2. Install system package. Example:

    sudo apt install curl

macOS

Windows

  1. Download to %USERPROFILE%\Downloads

  2. Extract file

    1. If 7-Zip is installed:

      set CURL_VERSION=8.2.1_7
      "%ProgramFiles%\7-Zip\7z.exe" x %USERPROFILE%\Downloads\curl-%CURL_VERSION%-win64-mingw.zip
  3. Copy file to C:Windows

    set CURL_VERSION=8.2.1_7
    copy %USERPROFILE%\Downloads\curl-%CURL_VERSION%-win64-mingw\bin\curl.exe C:\Windows\curl.exe
    

Test

  1. Test

    curl --version

Troubleshooting

References