conspy command not found

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

Introduction

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

conspy: command not found

or when using sudo you get the following error message

sudo: conspy: command not found

Solutions to conspy: command not found

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

In Ubuntu conspy is provided by conspy package.

conspy is:

Conspy allows a (possibly remote) user to see what is displayed on a Linux virtual console, and send keystrokes to it. It is rather like VNC, but where VNC takes control of a GUI conspy takes control of a text mode virtual console. Unlike VNC, conspy does not require a server to be installed prior to being used.

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

sudo apt-get -y install conspy

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

You can also use apt command to install conspy.

sudo apt -y install conspy

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

sudo aptitude install conspy

Summary

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