dav1d command not found

In this troubleshooting guide we learn how to fix dav1d command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

dav1d: command not found

or when using sudo you get the following error message

sudo: dav1d: command not found

Solutions to dav1d: command not found

How To Fix dav1d: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu dav1d is provided by dav1d package.

dav1d is:

dav1d is an AOMedia Video 1 (AV1) cross-platform decoder and focused on speed and correctness.

dav1d supports the following features:

  • support for all features of the AV1 bitstream
  • support for all bitdepth, 8, 10 and 12bits
  • support for all chroma subsamplings 4:2:0, 4:2:2, 4:4:4 and grayscale
  • full acceleration for AVX-2 chips
  • full acceleration for SSSE3+ chips
  • full acceleration for ARMv8 chips
  • partial acceleration for ARMv7 chips

To fix this problem, we can install more using the command below.

sudo apt-get -y install dav1d

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install dav1d.

sudo apt -y install dav1d

Or if you have aptitude installed you can use the following command.

sudo aptitude install dav1d

Summary

In this tutorial we learn how to fix dav1d command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.