nsys-ui command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
nsys-ui: command not found
or when using sudo you get the following error message
sudo: nsys-ui: command not found
Solutions to nsys-ui: command not found
How To Fix nsys-ui: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu nsys-ui 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 nsys-ui command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.