pycirkuit command not found

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

Introduction

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

pycirkuit: command not found

or when using sudo you get the following error message

sudo: pycirkuit: command not found

Solutions to pycirkuit: command not found

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

In Ubuntu pycirkuit is provided by pycirkuit package.

pycirkuit is:

PyCirkuit is a front-end for Dwight Aplevich’s Circuit Macros, which is a set of macros for drawing high-quality line diagrams to include in TeX, LaTeX, etc. PyCirkuit builds a live preview and allows it to be exported as TikZ.

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

sudo apt-get -y install pycirkuit

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

You can also use apt command to install pycirkuit.

sudo apt -y install pycirkuit

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

sudo aptitude install pycirkuit

Summary

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