Please Install The Following Missing Packages Libapr1 Libaprutil1 Libasound2 Libglib200 Install May 2026
To install these missing packages on Debian-based systems like Ubuntu, Linux Mint, or Pop!_OS, run the following command in your terminal:
sudo apt update && sudo apt install libapr1 libaprutil1 libasound2t64 libglib2.0-0 Use code with caution. Copied to clipboard Why you might be seeing errors
This specific list of missing packages—libapr1, libaprutil1, libasound2, and libglib2.0-0—is a common issue when installing DaVinci Resolve on modern Linux distributions like Ubuntu 24.04.
Virtual Packages: On newer systems, libasound2 is often replaced by a virtual package like libasound2t64. If the standard command fails, explicitly install the 64-bit transition version.
Installer Logic: Even after installing these, the DaVinci Resolve installer might still claim they are missing because it looks for specific legacy filenames. How to bypass the installer check
If you have verified the packages are installed but the .run installer still fails, you can force it to skip the dependency check:
Make the installer executable:chmod +x ./DaVinci_Resolve_Studio_19.1_Linux.run
Run with the skip flag:sudo SKIP_PACKAGE_CHECK=1 ./DaVinci_Resolve_Studio_19.1_Linux.run -i Alternative: Using -dev versions
In some cases, especially on Linux Mint 22, the application may require the development headers to properly link libraries:
sudo apt install libapr1-dev libaprutil1-dev libglib2.0-dev libasound2-dev Use code with caution. Copied to clipboard
For more detailed troubleshooting, you can check community threads on the Blackmagic Design Forum or Ask Ubuntu.
Are you currently using Ubuntu 24.04 or a different version of Linux for this installation?
libapr1 libaprutil1 libasound2 libglib2.0-0 - Linux Mint Forums
This error message typically occurs when installing DaVinci Resolve on modern Linux distributions like Ubuntu 24.04 or Linux Mint 22. The installer fails because it looks for specific package names that have been renamed or replaced in newer operating system versions. Quick Fix (Command)
To bypass the check and force the installation, run the installer from your terminal with the following environment variable:
sudo SKIP_PACKAGE_CHECK=1 ./DaVinci_Resolve_Installer_Name.run Use code with caution. Copied to clipboard
(Replace DaVinci_Resolve_Installer_Name.run with your actual file name). Detailed Package Status Report
The "missing" packages are often already present on your system under slightly different names due to the t64 transition (a shift in how Linux handles 64-bit time values). Requested Package Modern Equivalent / Status libapr1 libapr1t64 Apache Portable Runtime library libaprutil1 libaprutil1t64 Utilities for the APR library libasound2 libasound2t64 Advanced Linux Sound Architecture (ALSA) libglib2.0-0 libglib2.0-0t64 Core utility library for C (GLib) Step-by-Step Resolution
1. Install Modern EquivalentsEnsure you have the latest versions of these libraries installed via the terminal:
sudo apt update sudo apt install libapr1t64 libaprutil1t64 libasound2t64 libglib2.0-0t64 Use code with caution. Copied to clipboard
Note: If your system is older (e.g., Ubuntu 22.04), the original names without "t64" will still work.
2. Address the libasound2 "Virtual Package" ErrorOn newer systems, libasound2 is a "virtual package" and cannot be installed directly. If the installer still complains, users often find that installing the ALSA development files helps: sudo apt install libasound2-dev Use code with caution. Copied to clipboard
3. Bypass Outdated Installer ChecksBecause the DaVinci Resolve installer uses a hardcoded list of package names, it will not recognize the t64 versions even if they are installed. Using the SKIP_PACKAGE_CHECK=1 flag mentioned above is the standard workaround recommended by community experts at Ask Ubuntu and the Blackmagic Forums. To install these missing packages on Debian-based systems
4. Post-Installation Launch IssuesIf the software installs but fails to open, you may need to move conflicting libraries bundled with Resolve so it uses your system's newer versions: Missing Packages on Linux install - Blackmagic Forum
Please install the following missing packages: libapr1 libaprutil1 libasound2 libglib2.0-0. trying to install libapr1 for example, Blackmagic Forum How to install and set up DaVinci Resolve in Ubuntu 24.04
To install these missing packages—often required for software like DaVinci Resolve on Linux—you can use the standard package manager (apt). Direct Installation Command
Open your terminal and run the following command to install the primary packages:
sudo apt update && sudo apt install libapr1 libaprutil1 libasound2 libglib2.0-0 Use code with caution. Copied to clipboard
Troubleshooting for Modern Distributions (e.g., Ubuntu 24.04+)
If you are using a newer Linux distribution, some of these package names have changed due to the "t64" transition. If the command above fails with "package not found," try this updated version:
sudo apt install libapr1t64 libaprutil1t64 libasound2t64 libglib2.0-0t64 Use code with caution. Copied to clipboard
Why this happens: Newer versions of Ubuntu (24.04 and later) and Linux Mint have renamed these libraries to include "t64" to handle 64-bit time values.
Virtual Packages: libasound2 is sometimes a "virtual package." If apt asks you to choose one, explicitly select libasound2t64. Bypassing Installer Checks
If you have installed the packages but your software installer (like the DaVinci Resolve .run file) still claims they are missing, you can bypass the check by running the installer with a specific environment variable: sudo SKIP_PACKAGE_CHECK=1 ./your_installer_name.run Use code with caution. Copied to clipboard Summary of Package Roles libapr1: Apache Portable Runtime library. libaprutil1: Apache Portable Runtime Utility library.
libasound2: Shared library for ALSA (Advanced Linux Sound Architecture) applications.
libglib2.0-0: Core library for C routines used by GNOME and GTK+.
For further assistance, you can check community discussions on the Blackmagic Forum or Ask Ubuntu.
Are you installing DaVinci Resolve, or is this for a different application? How to install and set up DaVinci Resolve in Ubuntu 24.04
This report outlines the steps to resolve the "Missing or outdated system packages" error, typically encountered when installing DaVinci Resolve on Linux distributions like Ubuntu or Linux Mint. 1. Package Installation Command
To install the required libraries, open your terminal and execute the following command:
sudo apt update && sudo apt install libapr1 libaprutil1 libasound2 libglib2.0-0 Use code with caution. Copied to clipboard 2. Common Installation Issues & Fixes
Depending on your specific Linux version, you may encounter the following hurdles:
Virtual or Renamed Packages (Ubuntu 24.04+): Modern versions of Ubuntu and Linux Mint have transitioned some of these libraries to "t64" variants.
Fix: If the above command fails, try explicitly installing the updated versions:
sudo apt install libapr1t64 libaprutil1t64 libasound2t64 libglib2.0-0t64 Use code with caution. Copied to clipboard Encountering a missing package error can be frustrating,
Installer Still Reporting Missing Packages: Even after successful installation, some versions of the DaVinci Resolve installer may fail to detect these newer libraries because they look for the exact old names.
Fix (Bypass Check): You can force the installer to skip the dependency check by adding a prefix to the execution command:
sudo SKIP_PACKAGE_CHECK=1 ./DaVinci_Resolve_Studio_19.0_Linux.run Use code with caution. Copied to clipboard 3. Package Overview
These libraries are essential for various system functions required by high-end media applications:
libapr1 & libaprutil1: Apache Portable Runtime libraries that provide a predictable interface for system-level tasks.
libasound2: The Advanced Linux Sound Architecture (ALSA) library, required for audio playback and recording.
libglib2.0-0: A core library that provides the foundation for the GNOME desktop environment and many graphical applications. 4. Recommended Post-Install Action
If the application installs but fails to launch, you may need to move conflicting internal libraries provided by the software to allow it to use the system versions instead. DaVinci Resolve missing Packages - Linux Mint Forums
To resolve the "missing packages" error during the installation of software like DaVinci Resolve on Linux, you must install the specific shared libraries and, in some cases, bypass the installer's rigid package checks. 1. Update and Install Packages
The exact package names can vary depending on your Linux distribution's version (e.g., Ubuntu 24.04 uses
suffixes for many libraries). Run the following command in your terminal to cover the required dependencies: For Ubuntu 22.04 and older:
sudo apt update && sudo apt install libapr1 libaprutil1 libasound2 libglib2.0-0 For Ubuntu 24.04 and newer:
sudo apt update && sudo apt install libapr1t64 libaprutil1t64 libasound2t64 libglib2.0-0t64 2. Bypass Installer Package Checks
If the installer continues to report missing packages even after they are installed, it is likely because it is searching for legacy package names. You can bypass this check by setting an environment variable before running the installer: Make the installer executable: chmod +x DaVinci_Resolve_Installer.run Run the installer with the skip flag: sudo SKIP_PACKAGE_CHECK=1 ./DaVinci_Resolve_Installer.run 3. Resolving Runtime Library Conflicts
After a successful installation, the application may still fail to launch due to conflicts between system libraries and the bundled libraries located in /opt/resolve/libs . Common fixes include: Move Bundled Libraries
: If you see "symbol lookup" errors, try moving the bundled glib libraries so the app uses system versions instead: sudo mkdir /opt/resolve/libs/disabled-libraries
sudo mv /opt/resolve/libs/libglib-2.0.so* /opt/resolve/libs/disabled-libraries/
sudo mv /opt/resolve/libs/libgio-2.0.so* /opt/resolve/libs/disabled-libraries/
sudo mv /opt/resolve/libs/libgmodule-2.0.so* /opt/resolve/libs/disabled-libraries/ Linux Mint What specific Linux distribution and version
are you currently running? knowing this will help determine if you need the versions of these libraries. DaVinci Resolve missing Packages - Linux Mint Forums
This error message typically appears when you are trying to install DaVinci Resolve on a Debian-based Linux distribution (like Linux Mint
). The installer cannot find the exact package names it expects. This error doesn't mean your system is broken
To resolve this, follow these steps to install the modern equivalents of those packages and then bypass the installer's check. 1. Install the Modern Packages
Newer versions of Linux (like Ubuntu 24.04) have updated these library names with a
suffix. Use the following command to install the required dependencies: Linux Mint
sudo apt update sudo apt install libapr1t64 libaprutil1t64 libasound2t64 libglib2.0- Use code with caution. Copied to clipboard
Note: If you are on an older version of Linux, try the original names provided by Ubuntu Documentation
sudo apt install libapr1 libaprutil1 libasound2 libglib2.0-0 2. Bypass the Package Check
Even after installing the libraries, the DaVinci Resolve installer might still claim they are missing because it is hard-coded to look for the exact old names. You can force the installer to run by setting a "skip" flag in your terminal: Open your terminal in the folder where the installer is located.
Run the installer with the skip command (replace the filename with your actual version): sudo SKIP_PACKAGE_CHECK=1 ./DaVinci_Resolve_19.0_Linux.run Use code with caution. Copied to clipboard 3. Fixing Launch Issues (If It Won't Open)
If the program installs but fails to open, it is often due to a conflict with internal libraries. A common fix is to move or rename certain files in the Resolve installation directory so it uses your system's newer versions instead: Linux Mint
cd /opt/resolve/libs sudo mkdir disabled-libraries sudo mv libgio* libgmodule* libglib* disabled-libraries Use code with caution. Copied to clipboard
For more specific troubleshooting tailored to your Linux setup, community discussions on Linux Mint Forums Blackmagic Design Forums provide deep-dive solutions for various versions. Linux distribution
and version (e.g., Ubuntu 24.04, Mint 22) are you currently using? DaVinci Resolve missing Packages - Linux Mint Forums
It looks like you’re encountering a dependency error when trying to install or run a piece of software (possibly related to databases, web servers, or media applications). The message you shared has a small typo: libglib200 should likely be libglib2.0-0 (or similar, depending on your Linux distribution).
Below is a support-style content you can use for documentation, a forum post, or an internal wiki.
Encountering a missing package error can be frustrating, especially when you are in the middle of setting up critical software. One of the more cryptic yet common errors Linux users face involves a message similar to:
"Please install the following missing packages: libapr1 libaprutil1 libasound2 libglib200 install"
This error typically appears when trying to run a proprietary application (such as a DAW (Digital Audio Workstation), a game launcher, a VPN client, or a legacy enterprise tool) on a Linux distribution that does not have these specific libraries pre-installed.
If you see this message, don’t panic. This article will explain what these packages are, why you need them, and exactly how to install them on various Linux distributions, including Ubuntu, Debian, Fedora, Arch Linux, and even on Chromebooks or WSL (Windows Subsystem for Linux).
WSL often lacks audio and GUI libraries by default. After installing the packages via your distro's commands (e.g., sudo apt install ...), you may also need to install a sound server like PulseAudio on Windows to route libasound2 calls.
Use the following command:
sudo zypper install apr apr-util alsa glib2
This error doesn't mean your system is broken. It simply means the software you're trying to run is expecting shared libraries (.so files) that your system doesn't have. This happens for several reasons:
sudo apt update
| Distribution | Installation Command |
| ---------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Ubuntu/Debian | sudo apt update && sudo apt install libapr1 libaprutil1 libasound2 libglib2.0-0 |
| Ubuntu/Debian (32-bit) | sudo dpkg --add-architecture i386 && sudo apt update && sudo apt install libapr1:i386 libaprutil1:i386 libasound2:i386 libglib2.0-0:i386 |
| Fedora | sudo dnf install apr apr-util alsa-lib glib2 |
| openSUSE | sudo zypper install libapr1 libapr-util1 alsa-lib libglib-2_0-0 |
| Arch Linux | sudo pacman -S apr apr-util alsa-lib glib2 |


