texmaker command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
texmaker: command not found
or when using sudo you get the following error message
sudo: texmaker: command not found
Solutions to texmaker: command not found
How To Fix texmaker: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu texmaker is provided by texmaker package.
texmaker is:
Texmaker is a clean, highly configurable LaTeX editor with good hot key support and extensive LaTeX documentation. Texmaker integrates many tools needed to develop documents with LaTeX, in just one application. It has some nice features such as syntax highlighting, insertion of 370 mathematical symbols with only one click, and “structure view” of the document for easier navigation.
To fix this problem, we can install more using the command below.
sudo apt-get -y install texmaker
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install texmaker.
sudo apt -y install texmaker
Or if you have aptitude installed you can use the following command.
sudo aptitude install texmaker
Summary
In this tutorial we learn how to fix texmaker command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.