vite command not found

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

Introduction

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

vite: command not found

or when using sudo you get the following error message

sudo: vite: command not found

Solutions to vite: command not found

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

In Ubuntu vite is provided by vite package.

vite is:

ViTE is a powerful portable and open source profiling tool to visualize the behaviour of parallel applications. Thanks to its scalable design, ViTE helps programmers to efficiently analyze the performance of potentially large applications.

ViTE currently enables the visualisation of traces using the Pajé format (open format, see http://www-id.imag.fr/Logiciels/paje/) and has various functionalities such as exporting a view in a svg format to integrate the results easily in a report, or viewing statistics.

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

sudo apt-get -y install vite

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

You can also use apt command to install vite.

sudo apt -y install vite

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

sudo aptitude install vite

Summary

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