Skip to content

Instantly share code, notes, and snippets.

@jtrain
Created July 31, 2011 05:21
Show Gist options
  • Save jtrain/1116435 to your computer and use it in GitHub Desktop.
Save jtrain/1116435 to your computer and use it in GitHub Desktop.
External Interpreter Environment setup for PSSE minimum
import os,sys
PSSE_LOCATION = r"C:\Program Files\PTI\PSSE32\PSSBIN"
sys.path.append(PSSE_LOCATION)
os.environ['PATH'] = os.environ['PATH'] + ';' + PSSE_LOCATION
import psspy
import redirect
redirect.psse2py()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment