pl_editor command not found

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

Introduction

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

pl_editor: command not found

or when using sudo you get the following error message

sudo: pl_editor: command not found

Solutions to pl_editor: command not found

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

In Ubuntu pl_editor is provided by kicad package.

kicad is:

Kicad is a suite of programs for the creation of printed circuit boards. It includes a schematic editor, a PCB layout tool, support tools and a 3D viewer to display a finished & fully populated PCB.

Kicad is made up of 5 main components:

  • kicad - project manager
  • eeschema - schematic editor
  • pcbnew - PCB editor
  • gerbview - GERBER viewer
  • cvpcb - footprint selector for components

Libraries:

  • Both eeschema and pcbnew have library managers and editors for their components and footprints
  • You can easily create, edit, delete and exchange library items
  • Documentation files can be associated with components, footprints and key words, allowing a fast search by function
  • Very large libraries are available for schematic components and footprints
  • Most components have corresponding 3D models

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

sudo apt-get -y install kicad

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

You can also use apt command to install kicad.

sudo apt -y install kicad

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

sudo aptitude install kicad

Summary

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