pyjoke command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pyjoke: command not found
or when using sudo you get the following error message
sudo: pyjoke: command not found
Solutions to pyjoke: command not found
How To Fix pyjoke: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pyjoke is provided by pyjoke package.
pyjoke is:
Run this command line utility to generate random jokes for programmers. Choose from neutral jokes, adult jokes, and Chuck Norris themed jokes.
This package contains the application for Python 3.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pyjoke
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pyjoke.
sudo apt -y install pyjoke
Or if you have aptitude installed you can use the following command.
sudo aptitude install pyjoke
Summary
In this tutorial we learn how to fix pyjoke command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.