wuzz command not found

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

Introduction

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

wuzz: command not found

or when using sudo you get the following error message

sudo: wuzz: command not found

Solutions to wuzz: command not found

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

In Ubuntu wuzz is provided by wuzz package.

wuzz is:

Wuzz is an interactive tool for generating and sending HTTP requests, as well as viewing the responses. Instead of having to specify the HTTP headers, parameters, body etc. on the command-line, a simple and intuitive CUI (console user interface) can be used. Wuzz’s command line arguments are similar to cURL’s, so it can be used to inspect and modify requests copied from a browser’s network inspector with the “copy as cURL” feature.

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

sudo apt-get -y install wuzz

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

You can also use apt command to install wuzz.

sudo apt -y install wuzz

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

sudo aptitude install wuzz

Summary

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