librecad command not found

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

Introduction

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

librecad: command not found

or when using sudo you get the following error message

sudo: librecad: command not found

Solutions to librecad: command not found

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

In Ubuntu librecad is provided by librecad package.

librecad is:

LibreCAD is an application for computer aided design (CAD) in two dimensions (2D). With LibreCAD you can create technical drawings such as plans for buildings, interiors, mechanical parts or schematics and diagrams.

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

sudo apt-get -y install librecad

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

You can also use apt command to install librecad.

sudo apt -y install librecad

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

sudo aptitude install librecad

Summary

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