yorick command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
yorick: command not found
or when using sudo you get the following error message
sudo: yorick: command not found
Solutions to yorick: command not found
How To Fix yorick: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu yorick is provided by yorick package.
yorick is:
Yorick is an interpreted programming language for:
- scientific simulations or calculations
- postprocessing or steering large simulation codes
- interactive scientific graphics
- reading, writing, and translating large files of numbers
The language features a compact syntax for many common array operations, so it processes large arrays of numbers very quickly and efficiently. Superficially, yorick code resembles C code, but yorick variables are never explicitly declared and have a dynamic scoping similar to many Lisp dialects. The yorick language is designed to be typed interactively at a keyboard, as well as stored in files for later use.
This package includes an emacs-based development environment, which you can launch by typing M-x yorick in emacs.
Many add-on packages and plug-ins are available for Yorick (the package names begin with “yorick-”). You may want to install the yorick-full metapackage which depends on the vast majority of them.
To fix this problem, we can install more using the command below.
sudo apt-get -y install yorick
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install yorick.
sudo apt -y install yorick
Or if you have aptitude installed you can use the following command.
sudo aptitude install yorick
Summary
In this tutorial we learn how to fix yorick command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.