# DALI_deps **Repository Path**: mirrors_NVIDIA/DALI_deps ## Basic Information - **Project Name**: DALI_deps - **Description**: 3rd party dependencies for DALI project - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-16 - **Last Updated**: 2026-03-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README NVIDIA DALI =========== This repository contains extra dependencies required to setup a whole development environment for NVIDIA DALI project. To obtain only the required code for DALI build (without unnecessary git history) please: .. code-block:: bash git clone https://github.com/NVIDIA/DALI_deps git submodule init git submodule update --depth 1 --recursive The repository consists mostly of externally hosted subrepositories: +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | Repository | Version | License | +==============================================================================+===================================================================================================================+=====================================================================================================================+ | `libsndfile `_ | `1.2.2 `_ | `LGPL v2.1 license `_ | | | `(Source Snapshot) `_ | | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `vorbis `_ | `1.3.7 `_ | `BSD-3 license `_ | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `ogg `_ | `1.3.6 `_ | `BSD-3 license `_ | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `flac `_ | `1.5.0 with cross-compilation patch `_ | `BSD-3 license (+ GPL for utils, not used by DALI) `_ | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `opus `_ | `1.5.2 `_ | `BSD-3 license `_ | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `FFmpeg `_ | `8.0.1 `_ | `LGPL v2.1 license `_ | | | `(Source Snapshot) `_ | | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `OpenCV `_ | `4.13.0 `_ | `Apache License 2.0 `_ | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `openjpeg `_ | `2.5.4 `_ | `BSD-2 license `_ | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `libtiff `_ | `4.7.1 (+ Build System Patch) `_ | `BSD-2 license `_ | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `zstd `_ | `1.5.7 `_ | `BSD-3 license `_ | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `libjpeg-turbo `_ | `3.1.3 `_ | `BSD-3 license, IJG license, zlib license `_ | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `liblmdb `_ | `0.9.35 `_ | `OpenLDAP Public License `_ | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `protobuf `_ | `34.0 `_ | `BSD-3 license `_ | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `zlib `_ | `1.3.2 `_ | `zlib License `_ | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `libtar `_ | `1.2.20 + patches (master) `_ | `BSD-3 license `_ | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `cfitsio `_ | `4.6.3 `_ | `MIT-like license (NASA) `_ | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `curl `_ | `8.18.0 `_ | `CURL license `_ | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `OpenSSL `_ | `3.6.1 `_ | `Apache 2.0 license `_ | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | `aws_sdk_cpp `_ | `1.11.760 `_ | `Apache 2.0 license `_ | +------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ Installing dependencies locally =============================== In order to conduct `Bare Metal DALI build `_, you need to install all the above dependencies (or turn off particular features with CMake variables like ``BUILD_NVDEC=OFF`` etc...). ``build_scripts`` folder contains the recipes, how to build every particular dependency. This is automated using ``build_deps.sh``, which will build all the dependencies and install them to the local environment. We recommend not running this script as sudo. Instead, you can specify a prefix path:: export HOST_INSTALL_PREFIX=$HOME/prefix/ export PATH=$HOME/prefix/bin:$PATH export LD_LIBRARY_PATH=$HOME/prefix/lib:$LD_LIBRARY_PATH export CPATH=$HOME/prefix/include:$CPATH bash -ex build_scripts/build_deps.sh