mirror of
https://github.com/HandBrake/HandBrake-docs.git
synced 2025-12-11 13:54:49 -06:00
85 lines
2.5 KiB
Markdown
85 lines
2.5 KiB
Markdown
---
|
|
Type: article
|
|
Title: Installing dependencies on Ubuntu
|
|
Project: HandBrake
|
|
Project_URL: https://handbrake.fr/
|
|
Project_Version: Latest
|
|
Language: English
|
|
Language_Code: en
|
|
Authors: [ Bradley Sepos <bradley@bradleysepos.com> (BradleyS) ]
|
|
Copyright: 2017 HandBrake Team
|
|
License: Creative Commons Attribution-ShareAlike 4.0 International
|
|
License_Abbr: CC BY-SA 4.0
|
|
License_URL: https://handbrake.fr/docs/license.html
|
|
---
|
|
|
|
Installing dependencies on Ubuntu
|
|
=================================
|
|
|
|
The following instructions are for [Ubuntu](https://www.ubuntu.com) 16.04 LTS (Xenial Xerus) and Ubuntu 14.04 LTS (Trusty Tahr).
|
|
|
|
Dependencies:
|
|
|
|
- autoconf
|
|
- automake
|
|
- build-essential
|
|
- cmake
|
|
- git
|
|
- libass-dev
|
|
- libbz2-dev
|
|
- libfontconfig1-dev
|
|
- libfreetype6-dev
|
|
- libfribidi-dev
|
|
- libharfbuzz-dev
|
|
- libjansson-dev
|
|
- libmp3lame-dev
|
|
- libogg-dev
|
|
- libopus-dev
|
|
- libsamplerate-dev
|
|
- libtheora-dev
|
|
- libtool
|
|
- libvorbis-dev
|
|
- libx264-dev
|
|
- libxml2-dev
|
|
- m4
|
|
- make
|
|
- patch
|
|
- pkg-config
|
|
- python
|
|
- tar
|
|
- yasm
|
|
- zlib1g-dev
|
|
|
|
Additional Ubuntu 16.04 LTS dependencies:
|
|
|
|
- libtool-bin
|
|
|
|
Graphical interface dependencies:
|
|
|
|
- intltool
|
|
- libappindicator-dev
|
|
- libdbus-glib-1-dev
|
|
- libglib2.0-dev
|
|
- libgstreamer1.0-dev
|
|
- libgstreamer-plugins-base1.0-dev
|
|
- libgtk-3-dev
|
|
- libgudev-1.0-dev
|
|
- libnotify-dev
|
|
- libwebkitgtk-3.0-dev
|
|
|
|
Install dependencies.
|
|
|
|
sudo apt-get install autoconf automake build-essential cmake git libass-dev libbz2-dev libfontconfig1-dev libfreetype6-dev libfribidi-dev libharfbuzz-dev libjansson-dev libmp3lame-dev libogg-dev libopus-dev libsamplerate-dev libtheora-dev libtool libvorbis-dev libx264-dev libxml2-dev m4 make patch pkg-config python tar yasm zlib1g-dev
|
|
|
|
If you are running Ubuntu 16.04 LTS, install the additional dependencies.
|
|
|
|
sudo apt-get install libtool-bin
|
|
|
|
To build the GTK [GUI](abbr:Graphical User Interface), install the graphical interface dependencies.
|
|
|
|
sudo apt-get install intltool libappindicator-dev libdbus-glib-1-dev libglib2.0-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgtk-3-dev libgudev-1.0-dev libnotify-dev libwebkitgtk-3.0-dev
|
|
|
|
Ubuntu is now prepared to build HandBrake. See [Building HandBrake for Linux](build-linux.html) for further instructions.
|
|
|
|
[^python-centos-6]: Installing Python from CentOS [SCL](https://wiki.centos.org/AdditionalResources/Repositories/SCL) does not impact the default system Python; newer versions are installed alongside and in addition to the system version.
|