update-auctex-elisp command not found

In this troubleshooting guide we learn how to fix update-auctex-elisp command not found error message

Introduction

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

update-auctex-elisp: command not found

or when using sudo you get the following error message

sudo: update-auctex-elisp: command not found

Solutions to update-auctex-elisp: command not found

How To Fix update-auctex-elisp: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu update-auctex-elisp is provided by auctex package.

auctex is:

AUCTeX is a comprehensive customizable integrated environment for writing input files for TeX/LaTeX/ConTeXt/Texinfo using GNU Emacs. Currently XEmacs ships with its own AUCTeX version.

It supports processing source files by running TeX and related tools (such as output filters, post processors for generating indices and bibliographies, and viewers) from inside Emacs. AUCTeX allows browsing through the errors reported by TeX, while it moves the cursor directly to the reported error, and displays some documentation for that particular error. This will even work when the document is spread over several files.

AUCTeX can automatically indent LaTeX source, either line by line or for an entire document, and has a special outline feature which can greatly assist in getting an overview of a document.

AUCTeX is written entirely in Emacs Lisp, and may therefore be enhanced with new features for specific needs. It comes with a large range of handy Emacs macros. It is a GNU project, and documentation for all its features is accessible via the Emacs info browser.

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

sudo apt-get -y install auctex

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

You can also use apt command to install auctex.

sudo apt -y install auctex

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

sudo aptitude install auctex

Summary

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