scide command not found

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

Introduction

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

scide: command not found

or when using sudo you get the following error message

sudo: scide: command not found

Solutions to scide: command not found

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

In Ubuntu scide is provided by supercollider-ide package.

supercollider-ide is:

SuperCollider is an environment and programming language for real time audio synthesis and algorithmic composition. It provides an interpreted object-oriented language which functions as a network client to a state of the art, realtime sound synthesis server.

This package contains the graphical IDE, the recommended interface for working with SuperCollider code.

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

sudo apt-get -y install supercollider-ide

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

You can also use apt command to install supercollider-ide.

sudo apt -y install supercollider-ide

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

sudo aptitude install supercollider-ide

Summary

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