ny command not found

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

Introduction

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

ny: command not found

or when using sudo you get the following error message

sudo: ny: command not found

Solutions to ny: command not found

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

In Ubuntu ny is provided by nyquist package.

nyquist is:

Unlike score languages that tend to deal only with events, or signal processing languages that tend to deal only with signals and synthesis, Nyquist handles both in a single integrated system. Nyquist is also flexible and easy to use because it is based on an interactive Lisp interpreter (XLISP).

With Nyquist, you can design instruments by combining functions (much as you would using the orchestra languages of Music V, cmusic, or Csound). You can call upon these instruments and generate a sound just by typing a simple expression. You can combine simple expressions into complex ones to create a whole composition.

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

sudo apt-get -y install nyquist

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

You can also use apt command to install nyquist.

sudo apt -y install nyquist

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

sudo aptitude install nyquist

Summary

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