httpry command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
httpry: command not found
or when using sudo you get the following error message
sudo: httpry: command not found
Solutions to httpry: command not found
How To Fix httpry: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu httpry is provided by httpry package.
httpry is:
httpry is a tool designed for displaying and logging HTTP traffic. It is not intended to perform analysis itself, but instead to capture, parse and/or log the traffic for later analysis. It can be run in real-time displaying the live traffic on the wire, or as a daemon process that logs to an output file. It is written to be as lightweight and flexible as possible, so that it can be easily adaptable to different applications. It does not display the raw HTTP data transferred, but instead focuses on parsing and displaying the request/response line along with associated header fields.
This package contains the httpry executable. Package httpry-daemon contains required init script for running httpry as a daemon. Scripts for parsing log files are provided by httpry-tools.
To fix this problem, we can install more using the command below.
sudo apt-get -y install httpry
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install httpry.
sudo apt -y install httpry
Or if you have aptitude installed you can use the following command.
sudo aptitude install httpry
Summary
In this tutorial we learn how to fix httpry command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.