dxvk-setup command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dxvk-setup: command not found
or when using sudo you get the following error message
sudo: dxvk-setup: command not found
Solutions to dxvk-setup: command not found
How To Fix dxvk-setup: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dxvk-setup is provided by dxvk package.
dxvk is:
DXVK is a Vulkan-based translation layer for Direct3D 9/10/11 which allows running 3D applications on Linux using Wine.
DXVK aims to provide support for D3D11, feature level 11_1, and D3D10, feature level 10_1.
This package contains the dxvk-setup script that configures or removes DXVK from a Wine prefix.
To fix this problem, we can install more using the command below.
sudo apt-get -y install dxvk
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install dxvk.
sudo apt -y install dxvk
Or if you have aptitude installed you can use the following command.
sudo aptitude install dxvk
Summary
In this tutorial we learn how to fix dxvk-setup command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.