eric ide

Issue32

Classification
Title: Eric 4 crashing due to a missing module
Type: crash Product: eric4
Process
Priority: critical    
Status: closed Resolution: rejected
Superseder: Nosy List: berkantk, detlev
Assigned to: detlev Keywords:

Created on 2011-10-01.11:23:17 by berkantk, last changed by detlev.

Messages (2.0)
msg109 (view) Author: detlev Date: 2011-10-01.15:34:54
That seems to be an issue of the Python installation. Please check the file
"<path to Python lib>/email/__init__.py. The last code block at the bottom
should look like these lines.

------------
import email.mime
for _name in _MIMENAMES:
    importer = LazyImporter('mime.' + _name.lower())
    sys.modules['email.MIME' + _name] = importer
    setattr(sys.modules['email'], 'MIME' + _name, importer)
    setattr(sys.modules['email.mime'], _name, importer)
------------

If they don't please report the issue to the package maintainers.
msg108 (view) Author: berkantk Date: 2011-10-01.11:23:17
Hi, I'm using Ubuntu 11.10 and Eric 4.4. I can't get Eric to run, the startup window appears and then crashes 
itself.  I pasted the terminal report here :  http://pastebin.com/sPSWAtTy

It says the module Image does not exist, whereas i can import it in Python, when i separately try.
History
Date User Action Args
2011-10-01 15:34:54detlevsetmessage_count: 1.0 -> 2.0
messages: + msg109
resolution: rejected
status: open -> closed
2011-10-01 15:24:37detlevsetassignedto: detlev
nosy: + detlev
status: new -> open
2011-10-01 11:23:17berkantkcreate