Skip to content

Latest commit

 

History

History
58 lines (47 loc) · 1.46 KB

INSTALL.md

File metadata and controls

58 lines (47 loc) · 1.46 KB

Decoder++ Installation Guide

The following sections provide information about how Decoder++ can be installed on various Systems.

via pip (Ubuntu)

Qt6

apt-get update
apt-get install -y python3 python3-pip \
  libqt6core6 libqt6network6 libqt6openglwidgets6 libqt6widgets6 qt6-qpa-plugins \
  libgl1 libxcb-xinerama0
pip3 install decoder-plus-plus[qt6]

Qt5

apt-get update
apt-get install -y python3 python3-pip qt5-default libgl1 libxcb-xinerama0
pip3 install decoder-plus-plus[qt5]

via git (Ubuntu)

Qt6

apt-get update
apt-get install -y python3 python3-pip git \
  libqt6core6 libqt6network6 libqt6openglwidgets6 libqt6widgets6 qt6-qpa-plugins \
  libgl1 libxcb-xinerama0
git clone https:/bytebutcher/decoder-plus-plus/
pip3 install --upgrade pip && pip3 install ./decoder-plus-plus[qt6] ./decoder-plus-plus[extras]

Qt5

apt-get update
apt-get install -y python3 python3-pip git qt5-default libgl1 libxcb-xinerama0
git clone https:/bytebutcher/decoder-plus-plus/
pip3 install --upgrade pip && pip3 install ./decoder-plus-plus[qt5] ./decoder-plus-plus[extras]

via Docker

Qt6

git clone https:/bytebutcher/decoder-plus-plus
cd decoder-plus-plus/docker
bash docker-dpp-build qt6 && bash docker-dpp-run qt6

Qt5

git clone https:/bytebutcher/decoder-plus-plus
cd decoder-plus-plus/docker
bash docker-dpp-build qt5 && bash docker-dpp-run qt5