#!/bin/csh # Give this file executable privileges (chmod +x runpy). # Put this info in your .cshrc file to make it permanent. # 1) Add path to command-line interpreter set path = (/usr/local/bin $path) # 2) Set python library search paths # add your module file directories to the list as desired setenv PYTHONPATH \ .:/usr/local/lib/python:/usr/local/lib/python/tkinter # 3) Set tk library search paths (for GUIs) setenv TCL_LIBRARY /usr/local/lib/tcl7.4 setenv TK_LIBRARY /usr/local/lib/tk4.0 # 4) Start up the interactive command-line python