httrack command not found

In this troubleshooting guide we learn how to fix httrack command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

httrack: command not found

or when using sudo you get the following error message

sudo: httrack: command not found

Solutions to httrack: command not found

How To Fix httrack: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu httrack is provided by httrack package.

httrack is:

HTTrack is an offline browser utility, allowing you to download a World Wide website from the Internet to a local directory, building recursively all directories, getting html, images, and other files from the server to your computer.

HTTrack arranges the original site’s relative link-structure. Simply open a page of the “mirrored” website in your browser, and you can browse the site from link to link, as if you were viewing it online. HTTrack can also update an existing mirrored site, and resume interrupted downloads. HTTrack is fully configurable, and has an integrated help system.

To fix this problem, we can install more using the command below.

sudo apt-get -y install httrack

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install httrack.

sudo apt -y install httrack

Or if you have aptitude installed you can use the following command.

sudo aptitude install httrack

Summary

In this tutorial we learn how to fix httrack command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.