llvm-spirv command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
llvm-spirv: command not found
or when using sudo you get the following error message
sudo: llvm-spirv: command not found
Solutions to llvm-spirv: command not found
How To Fix llvm-spirv: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu llvm-spirv is provided by llvm-spirv package.
llvm-spirv is:
SPIRV-LLVM-translator is a LLVM/SPIRV bi-directional translator. This package includes a library and a tool for translation between LLVM IR and SPIR-V.
This package includes the llvm-spirv binary.
To fix this problem, we can install more using the command below.
sudo apt-get -y install llvm-spirv
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install llvm-spirv.
sudo apt -y install llvm-spirv
Or if you have aptitude installed you can use the following command.
sudo aptitude install llvm-spirv
Summary
In this tutorial we learn how to fix llvm-spirv command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.