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]

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users

Reply via email to