This guide explains how to install cURL on Ubuntu-based Linux systems.
cURL is a command-line tool that allows you to send and receive data to and from a server using various protocols such as HTTP, HTTPS, FTP, and more. It is commonly used to make API requests, download files, and test server connections.
Steps to Install cURL on Ubuntu:
- Open the Terminal
You can open the terminal using Ctrl + Alt + T or from the applications menu. - Update the package index
sudo apt update
- Install cURL
sudo apt install curl
- If prompted, enter your system password to proceed with the installation.
- Wait for the installation to complete.
- To confirm that cURL has been installed successfully, run:
curl --version
If installed correctly, this command will display the installed cURL version and supported protocols.
Next Steps
Once installed, you can start using cURL to download files, send HTTP requests, and interact with APIs.
For more details, refer to our guide on how to download files using the cURL command.
If you have any questions or face issues during installation, feel free to contact our support specialists — they’re available to assist you at any time.