qrenderdoc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
qrenderdoc: command not found
or when using sudo you get the following error message
sudo: qrenderdoc: command not found
Solutions to qrenderdoc: command not found
How To Fix qrenderdoc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu qrenderdoc is provided by qrenderdoc package.
qrenderdoc is:
RenderDoc is a free MIT licensed stand-alone graphics debugger that allows quick and easy single-frame capture and detailed introspection of any application using Vulkan, D3D11, OpenGL & OpenGL ES or D3D12 across Windows 7 - 10, Linux, or Android.
This package provides the renderdoc graphical application.
To fix this problem, we can install more using the command below.
sudo apt-get -y install qrenderdoc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install qrenderdoc.
sudo apt -y install qrenderdoc
Or if you have aptitude installed you can use the following command.
sudo aptitude install qrenderdoc
Summary
In this tutorial we learn how to fix qrenderdoc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.