Skip to content

Instantly share code, notes, and snippets.

View thesnapdragon's full-sized avatar

Milán Unicsovics thesnapdragon

View GitHub Profile
#!/bin/bash
# script for pyenv installation of pygtk3 in ubuntu 12.04
# Adapted from https://gist.github.com/mehcode/6172694
system_package_installed() {
if ! dpkg -l | grep -q $1; then
sudo apt-get install $1
fi
}