rpyc_classic command not found

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

Introduction

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

rpyc_classic: command not found

or when using sudo you get the following error message

sudo: rpyc_classic: command not found

Solutions to rpyc_classic: command not found

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

In Ubuntu rpyc_classic is provided by python3-rpyc package.

python3-rpyc is:

RPyC (pronounced as are-pie-see), or Remote Python Call, is a transparent Python library for symmetrical remote procedure calls, clustering and distributed-computing. RPyC makes use of object-proxying, a technique that employs Python’s dynamic nature, to overcome the physical boundaries between processes and computers, so that remote objects can be manipulated as if they were local.

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

sudo apt-get -y install python3-rpyc

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

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

sudo apt -y install python3-rpyc

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

sudo aptitude install python3-rpyc

Summary

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