ucblogo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ucblogo: command not found
or when using sudo you get the following error message
sudo: ucblogo: command not found
Solutions to ucblogo: command not found
How To Fix ucblogo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ucblogo is provided by ucblogo package.
ucblogo is:
This is the UC Berkeley implementation of logo written primarily by Daniel Van Blerkom, Brian Harvey, Michael Katz, and Douglas Orleans. This version of logo is featured in Brian Harvey’s book _Computer_Science_Logo_Style, _Volume_1: Symbolic_Computing (ISBN 0-262-58151-5). This version provides the following special features:
- Random-access arrays.
- Variable number of inputs to user-defined procedures.
- Mutators for list structure (dangerous).
- Pause on error, and other improvements to error handling.
- Comments and continuation lines; formatting is preserved when procedure definitions are saved or edited.
- Terrapin-style tokenization (e.g., [2+3] is a list with one member) but LCSI-style syntax (no special forms except TO). The best of both worlds.
- First-class instruction and expression templates.
- Macros.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ucblogo
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ucblogo.
sudo apt -y install ucblogo
Or if you have aptitude installed you can use the following command.
sudo aptitude install ucblogo
Summary
In this tutorial we learn how to fix ucblogo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.