| 1 | initial version |
You get this rather misleading error when running Python on top if your environment is not setup properly.
The code in the question places the delimiter ';' after the PSSE path instead of between the current path and PSSE path.
os.environ['PATH'] += PSSE + ';'
try this instead::
os.environ['PATH'] += ';' + PSSE
| 2 | No.2 Revision |
You get this rather misleading error when running Python on top if your environment is not setup properly.
The code in the question places the delimiter ';' after the PSSE path instead of between the current path and PSSE path.
os.environ['PATH'] += PSSE + ';'
try this instead::
os.environ['PATH'] += ';' + PSSE
I get the same error message trying to load a case when my environment was bad.
whit loves you. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.