How to install TexStudio on Ubuntu 16.04?

Solution 1:

Yes you have to install texlive-full, it is around 3.5 GB. To install it, run the following command in the terminal:

sudo apt install texlive-full

Then you can install texstudio or texmaker.

Source here

Solution 2:

When I installed Texmaker then that was all I needed to do. Any dependencies should be automatically installed when you use apt-get. I remember being surprised how much more work I had to do to install it on Windows.

Solution 3:

It is also possible to install it via the Ubuntu Software program, which might be easier for people that are new to Ubuntu.

  1. Open Ubuntu Software
  2. Search TeXstudio
  3. Press install and wait

Solution 4:

When installing texstudio, you need to install texlive first, since texstudio is solely the "IDE"

Solution 5:

Texstudio is merely an IDE. To get the full advantage of installing latex, you will have to use the command:

sudo apt install texlive-full  // for ubuntu 16.04 and above

However, the above command can most often be a temptation. It installs so many extra (language) packages, most of which will be unnessary for your purpose. Therefore, it is recommended to use the command without the "full":

sudo apt install texlive   // for ubuntu 16.04 and above

Hope this helps!