First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
Hi, I installed PSSE 35.3.3, and I have the follow script in python 3.9:
`import sys
import os
psse_PATH=(r"""C:\Program Files\PTI\PSSE35\35.3\PSSBIN""")
pssepy_PATH=(r"""C:\Program Files\PTI\PSSE35\35.3\PSSPY39""")
sys.path.append(psse_PATH)
envpath = ';'+psse_PATH
os.environ['PATH'] += envpath
sys.path.append(pssepy_PATH)
envpathpy = ';'+pssepy_PATH
os.environ['PATH'] += envpathpy
import psspy`
I haver error importing psspy module. Do you now how I can solve it?
2 | No.2 Revision |
Hi, I installed PSSE 35.3.3, and I have the follow script in python 3.9:
`import sys
import sys
import os
import os
psse_PATH=(r"""C:\Program Files\PTI\PSSE35\35.3\PSSBIN""")
sys.path.append(psse_PATH)
sys.path.append(pssepy_PATH)
I haver error importing psspy module. Do you now how I can solve it?
3 | No.3 Revision |
Hi, I installed PSSE 35.3.3, and I have the follow script in python 3.9:
import sys
import os
psse_PATH=(r"""C:\\Program Files\\PTI\\PSSE35\\35.3\\PSSBIN""")
pssepy_PATH=(r"""C:\Program Files\PTI\PSSE35\35.3\PSSPY39""")
sys.path.append(psse_PATH)
envpath = ';'+psse_PATH
os.environ['PATH'] += envpath
sys.path.append(pssepy_PATH)
envpathpy = ';'+pssepy_PATH
os.environ['PATH'] += envpathpy
import psspy
I haver error importing psspy module. Do you now how I can solve it?