[Tex/LaTex] XeLaTeX compiler file is missing – where shall I download it

compilingxetex

I have a problem with my TeXstudio on Ubuntu, cause I can not compile my tex files via XeLaTeX.

The problem:

Error: Could not start the command: xelatex -synctex=1
-interaction=nonstopmode "muktaavalii".tex

I have checked the src: usr/bin/ but I haven't found the xelatex file in the folder.

Could you suggest me something where can I download only that file?

Best Answer

Most probably you are missing the XeLaTeX compiler. Install it by running sudo apt-get install texlive-xetex. If you haven't installed texlive at all, run sudo apt-get install texlive.

To explain what is the difference: TeXStudio is just an editor (like Kate, Gedit, vim, but optimized for LaTeX). TeXLive is a package containing various compilers (which, briefly said, compile tex files into pdfs), LaTeX packages (such as hyperref), language packages and fonts.

Therefore TeXLive is essential if you want to compile tex files. TeXStudio is just a nice bonus to make your editing more pleasant.