Ask Your Question

abkakar's profile - activity

2022-08-22 12:51:30 -0500 received badge  Famous Question (source)
2022-07-06 19:41:02 -0500 received badge  Notable Question (source)
2022-07-03 20:24:17 -0500 received badge  Popular Question (source)
2022-07-01 01:39:17 -0500 asked a question Open PSSE35.0 in Python3.7

Hi! I tried following script to open PSSE35.0 in Python 3.7:

import os, sys

PSSE_LOCATION = r"C:\Program Files\PTI\PSSE35\35.0\PSSPY37"

sys.path.append(PSSE_LOCATION)

os.environ['PATH'] = os.environ['PATH'] + ';' +  PSSE_LOCATION 

import psspy

But it gave following error:

DLL load failed: The specific module could not be found.

How can i fix this issue?

I tried to use Python 2.7 as well but the error is same.