send_osc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
send_osc: command not found
or when using sudo you get the following error message
sudo: send_osc: command not found
Solutions to send_osc: command not found
How To Fix send_osc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu send_osc is provided by pyliblo-utils package.
pyliblo-utils is:
This package contains the send_osc and dump_osc utilities, which can be used to send OSC messages from a command line, and to print all incoming messages.
Open Sound Control (OSC) is a protocol for communication among computers, sound synthesizers, and other multimedia devices that is optimized for modern networking technology.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pyliblo-utils
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pyliblo-utils.
sudo apt -y install pyliblo-utils
Or if you have aptitude installed you can use the following command.
sudo aptitude install pyliblo-utils
Summary
In this tutorial we learn how to fix send_osc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.