Install Speedtest-cli On a CentOS / RHEL / Fedora Linux To Check Internet Speed

To install speedtest-cli on a CentOS, RHEL, or Fedora Linux system, you need to first install the Python package manager pip. Here are the steps:

  1. Update the package repository to ensure you have the latest packages:
    sudo yum update
  2. Install the Python pip package manager:
    sudo yum install python-pip
  3. Use pip to install speedtest-cli:
    sudo pip install speedtest-cli
  4. Verify the installation by running the following command:
    speedtest-cli

This should display information about your internet connection speed, including the download and upload speeds, and the latency.

Leave a Comment