[Pydev-users] [Please post to StackOverflow with PyDev tag] RE: pydev makes python.exe crash
Brought to you by:
fabioz
From: SourceForge.net <no...@so...> - 2012-05-14 16:29:57
|
The following forum message was posted by bastif at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4548534: hey guys, after some searching I found the solution: Eclipse or PyDev adds some environment variables. Apparently Abaqus crashes if 'PYTHONIOENCODING' is set. So I just removed this variable within python and it worked. [code]import os try: os.environ.pop('PYTHONIOENCODING') except KeyError: pass # now call abaqus code] |