#!/usr/bin/env python ALLDIRS = ['/afs/andrew.cmu.edu/usr4/worichte/flask_env/lib/python2.6/site-packages'] import sys import site # Remember original sys.path. prev_sys_path = list(sys.path) # Add each new site-packages directory. for directory in ALLDIRS: site.addsitedir(directory) # Reorder sys.path so new directories at the front. new_sys_path = [] for item in list(sys.path): if item not in prev_sys_path: new_sys_path.append(item) sys.path.remove(item) sys.path[:0] = new_sys_path import flask