In this tutorial you will learn how to install the curl command on Ubuntu 20.04 Focal Fossa.
In this tutorial you will learn:
- How to install
curlcommand - How to troubleshoot
Command 'curl' not founderror
Software Requirements and Conventions Used
| Category | Requirements, Conventions or Software Version Used |
|---|---|
| System | Installed Ubuntu 20.04 or upgraded Ubuntu 20.04 Focal Fossa |
| Software | N/A |
| Other | Privileged access to your Linux system as root or via the sudo command. |
| Conventions |
# – requires given linux commands to be executed with root privileges either directly as a root user or by use of sudo command$ – requires given linux commands to be executed as a regular non-privileged user |
How to install curl command step by step instructions
The following error message may appear on your terminal hinting the unavailability of the curl command:
Command 'curl' not found, but can be installed with: OR bash: /usr/bin/curl: No such file or directory
- To resolve this issue first try to install the
curlcommand. First and the most obvious installation method is to use apt install curl by executing the following command:$ sudo apt install curl
- In case the
curlcommand is still not found check whether the curl binary executable exists:$ ls /usr/bin/curl /usr/bin/curl
Check if you can execute the command using a full path:
$ /usr/bin/curl --version curl 7.66.0 (x86_64-pc-linux-gnu) libcurl/7.66.0 OpenSSL/1.1.1d zlib/1.2.11 brotli/1.0.7 libidn2/2.2.0 libpsl/0.20.2 (+libidn2/2.0.5) libssh/0.9.3/openssl/zlib nghttp2/1.40.0 librtmp/2.3
- Next, ensure the path to the
curlis a part of your executable shell path:$ echo $PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
- Lastly, you may try to reinstall the
curlcommand:$ sudo dpkg-reconfigure curl
