Skip to content

Instantly share code, notes, and snippets.

@brianclinkenbeard
Last active January 18, 2020 07:21
Show Gist options
  • Save brianclinkenbeard/0c83916bcef2f4253ef2592500994a33 to your computer and use it in GitHub Desktop.
Save brianclinkenbeard/0c83916bcef2f4253ef2592500994a33 to your computer and use it in GitHub Desktop.
Install VapourSynth on Debian Bullseye

Install VapourSynth on Debian Bullseye

Installing dependencies from respositories

sudo apt-get install \
autoconf \
automake \
pkg-config \
build-essential \
python3-dev \
python3-pip \
cython3 \
libmagick++-dev \
libarchive-dev

Installing zimg

git clone https://github.com/sekrit-twc/zimg.git
cd zimg
./autogen.sh
./configure --enable-x86simd
make
sudo make install

Note that you can also use sudo checkinstall instead of sudo make install to have the ability to uninstall with dpkg.

Installing VapourSynth

git clone https://github.com/vapoursynth/vapoursynth.git
cd vapoursynth
./autogen.sh
./configure
make
sudo make install
sudo ldconfig

Again, you may also use checkinstall.

Install Python wrapper

pip3 install VapourSynth

Install VapourSynth editor (optional)

sudo apt-get install qt5-default libqt5websockets5-dev
git clone https://bitbucket.org/mystery_keeper/vapoursynth-editor.git
cd vapoursynth-editor/pro
qmake pro.pro
make

Binaries can now be found in ../build.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment