First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
answered Dec 7 '13
this two lines are wrong:
os.environ['PATH'] +=PSSE_PATH + ';' os.environ['PATH'] += File_Path + ';'
replace that two lines with:
os.environ['PATH'] += ';' + PSSE_PATH os.environ['PATH'] += ';' + File_Path