Skip to content

Instantly share code, notes, and snippets.

View cewood's full-sized avatar

Cameron Wood cewood

View GitHub Profile
@cewood
cewood / gtk3-pyenv.sh
Last active August 29, 2015 14:17 — forked from tarruda/gtk3-pyenv.sh
#!/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
}