import psse34 error
In the psse34 documents, they said for psse 33.8+ we could just use import psse 34
instead of
sys.path.append(PSSPY_location)
sys.path.append(PSSE_location)
os.environ['PATH'] += ';' + PSSPY_location
os.environ['PATH'] += ';' + PSSE_location
but when i tried to do this, the pycharm told me " ImportError: No module named psse34"
Is there any requirement or pre-setting i need to do to use this import psse34
?