I am trying to install the IpythonIntegration package in sublime,
I installed in a bash shell:
- the latest ipython
- pyzmq
- pyside
However, the sublime console still gives me an error of
Reloading plugin /home/areal/.config/sublime-text-2/Packages/User/ipython_repl.py
Traceback (most recent call last):
File "./sublime_plugin.py", line 62, in reload_plugin
File "./ipython_repl.py", line 13, in <module>
from IPython.zmq.blockingkernelmanager import BlockingKernelManager
ImportError: No module named IPython.zmq.blockingkernelmanager
EDIT:
Even a import IPython
won't work.
When in python console, import IPython
and import zmq
work, however:
from IPython.zmq.blockingkernelmanager import BlockingKernelManager
Fails with:
ImportError: No module named zmq.blockingkernelmanager
I have 0MQ 3.2
(also tried with 2.x), and latest PyZMQ
.
I am working with Python 2.7.2
on Ubuntu 11.10
.
So in general I have 2 problems:
- No IPython in Sublime (I assume it is because sublime works with an embedded interpreter)
- No zmq module in IPython