nsight-sys command not found

In this troubleshooting guide we learn how to fix nsight-sys command not found error message

Introduction

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

nsight-sys: command not found

or when using sudo you get the following error message

sudo: nsight-sys: command not found

Solutions to nsight-sys: command not found

How To Fix nsight-sys: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu nsight-sys is provided by nsight-systems package.

nsight-systems is:

NVIDIA Nsight Systems is a system-wide performance analysis tool designed to visualize an application’s algorithms, help you identify the largest opportunities to optimize, and tune to scale efficiently across any quantity or size of CPUs and GPUs; from large server to smallest SoCs.

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

sudo apt-get -y install nsight-systems

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

You can also use apt command to install nsight-systems.

sudo apt -y install nsight-systems

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

sudo aptitude install nsight-systems

Summary

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