tikzit command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tikzit: command not found
or when using sudo you get the following error message
sudo: tikzit: command not found
Solutions to tikzit: command not found
How To Fix tikzit: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tikzit is provided by tikzit package.
tikzit is:
TikZiT is a super simple GUI editor for graphs and string diagrams. Its native file format is a subset of PGF/TikZ, which means TikZiT files can be included directly in papers typeset using LaTeX.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tikzit
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tikzit.
sudo apt -y install tikzit
Or if you have aptitude installed you can use the following command.
sudo aptitude install tikzit
Summary
In this tutorial we learn how to fix tikzit command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.