Running Python 2.7.3 on Ubuntu 12.04 with the latest versions of IPython. I installed IdleX, but as soon as I started it, I get an error message:
Traceback (most recent call last): File "/usr/local/lib/python2.7/dist-packages/idlexlib/extensionManager.py", line 131, in load_extension mod = importlib.import_module('.' + fullname, package=__package__) File "/usr/lib/python2.7/importlib/__init__.py", line 37, in import_module __import__(name) File "/usr/local/lib/python2.7/dist-packages/idlexlib/extensions/IPyIDLE.py", line 253, in <module> class IdleXSubSocketChannel(SimpleChannel, channels.IOPubChannel): AttributeError: 'module' object has no attribute 'IOPubChannel' could not load IPyIDLE
At first I thought I could ignore it, because everything seemed to work fine, but then I tried several scripts that caused errors in IdleX, but not in normal idle time. In particular, from selenium import webdriver worked fine in normal mode, but not in IdleX. I can’t understand what I’m doing wrong and what to do with it ...
source share