lie command not found

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

Introduction

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

lie: command not found

or when using sudo you get the following error message

sudo: lie: command not found

Solutions to lie: command not found

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

In Ubuntu lie is provided by lie package.

lie is:

LiE is a computer algebra system that is specialised in computations involving (reductive) Lie groups and their representations.

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

sudo apt-get -y install lie

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

You can also use apt command to install lie.

sudo apt -y install lie

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

sudo aptitude install lie

Summary

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