-
Notifications
You must be signed in to change notification settings - Fork 162
Description
Hi,
I've been trying to get GVIM and IPython to play together, without success so far on Windows 7.
Here are the steps I've taken:
- I launch IPython qtconsole successfully. I'm using version 0.12, what came with the EPD Python 2.7.2.
- :echo has('python') returns 1 for me.
- I source ipy.vim successfully in vim.
Things go bad for me when I attempt to run ":IPython" in vim.
I get a "Runtime Error!" alert about "R6034, An application has made an attempt to load the C runtime library incorrectly."
VIM reports the following:
Traceback (most recent call last):
File "", line 1, in
File "", line 39, in km_from_string
File "C:\Python27\lib\site-packages\IPython\zmq__init__.py", line 39, in
check_for_zmq('2.1.4')
File "C:\Python27\lib\site-packages\IPython\zmq__init__.py", line 17, in check_for_zmq
import zmq
File "C:\Python27\lib\site-packages\zmq__init__.py", line 32, in
ctypes.cdll.LoadLibrary(libzmq)
File "C:\Python27\Lib\ctypes__init__.py", line 431, in LoadLibrary
return self.dlltype(name)
File "C:\Python27\Lib\ctypes__init_.py", line 353, in init
self._handle = _dlopen(self._name, mode)
Any idea what my issue is? From IPython i can import ctypes and zmq. I'm pretty new to Python and IPython, which is probably the biggest problem!
Thanks for any help!
-Patrick