Skip to content

Instantly share code, notes, and snippets.

View Lunderberg's full-sized avatar

Eric Lunderberg Lunderberg

View GitHub Profile
@mehcode
mehcode / install-pygtk.sh
Created August 7, 2013 09:49
Install pygtk inside of a virtualenv
# Ensure we're in a virtualenv.
if [ "$VIRTUAL_ENV" == "" ]
then
echo "ERROR: not in a virtual environment."
exit -1
fi
# Setup variables.
CACHE="/tmp/install-pygtk-$$"