texstudio command not found

In this troubleshooting guide we learn how to fix texstudio command not found error message

Introduction

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

texstudio: command not found

or when using sudo you get the following error message

sudo: texstudio: command not found

Solutions to texstudio: command not found

How To Fix texstudio: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu texstudio is provided by texstudio package.

texstudio is:

TeXstudio is a program based on Texmaker, which integrates many tools needed to develop documents with LaTeX in just one application. Using its editor you can write your documents with the help of interactive spell checking, syntax highlighting, code completion and more…

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

sudo apt-get -y install texstudio

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

You can also use apt command to install texstudio.

sudo apt -y install texstudio

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

sudo aptitude install texstudio

Summary

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