rep-remote command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rep-remote: command not found
or when using sudo you get the following error message
sudo: rep-remote: command not found
Solutions to rep-remote: command not found
How To Fix rep-remote: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rep-remote is provided by rep package.
rep is:
rep is a dialect of Lisp, designed to be used both as an extension language for applications and as a general purpose programming language.
It was originally written to be mostly-compatible with Emacs Lisp, but has subsequently diverged markedly. Its aim is to combine the best features of Scheme and Common Lisp and provide an environment that is comfortable for implementing both small and large scale systems. It tries to be a “pragmatic” programming language.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rep
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rep.
sudo apt -y install rep
Or if you have aptitude installed you can use the following command.
sudo aptitude install rep
Summary
In this tutorial we learn how to fix rep-remote command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.