renderdoccmd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
renderdoccmd: command not found
or when using sudo you get the following error message
sudo: renderdoccmd: command not found
Solutions to renderdoccmd: command not found
How To Fix renderdoccmd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu renderdoccmd is provided by renderdoccmd package.
renderdoccmd 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 command line tool.
To fix this problem, we can install more using the command below.
sudo apt-get -y install renderdoccmd
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install renderdoccmd.
sudo apt -y install renderdoccmd
Or if you have aptitude installed you can use the following command.
sudo aptitude install renderdoccmd
Summary
In this tutorial we learn how to fix renderdoccmd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.