pydle-irccat command not found

In this troubleshooting guide we learn how to fix pydle-irccat command not found error message

Introduction

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

pydle-irccat: command not found

or when using sudo you get the following error message

sudo: pydle-irccat: command not found

Solutions to pydle-irccat: command not found

How To Fix pydle-irccat: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu pydle-irccat is provided by python3-pydle package.

python3-pydle is:

Standards-compliant and flexible IRC library for Python, with a modularized feature system.

Based on RFC1459 with some small extension tweaks, with full support of optional extension standards:

  • TLS
  • CTCP
  • (coming soon) DCC and extensions
  • ISUPPORT/PROTOCTL
  • IRCv3.1 (full)
  • IRCv3.2 (base complete, most optional extensions)
  • IRCv3.3 (base in progress)

The library is built using Python 3 asynchronous functions.

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

sudo apt-get -y install python3-pydle

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

You can also use apt command to install python3-pydle.

sudo apt -y install python3-pydle

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

sudo aptitude install python3-pydle

Summary

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