Skip to content

Instantly share code, notes, and snippets.

@jegger
jegger / Pygst_virtualenv.sh
Created April 6, 2014 09:51
Install (link) gstreamer0.10 (pygst / gst) into a virtualenv
# Replace 'venv' with the foldername of your virtualenv.
# This script links the gst module and it's dependecies into the virtualenv.
# Tested on ubuntu 12.04
sudo apt-get install python-gst0.10
cd venv/lib/python2.7/site-packages
ln -s /usr/lib/python2.7/dist-packages/glib
ln -s /usr/lib/python2.7/dist-packages/gobject
ln -s /usr/lib/python2.7/dist-packages/gst-0.10
ln -s /usr/lib/python2.7/dist-packages/gstoption.so