Closed GoogleCodeExporter closed 8 years ago
Try running the following command in Vim and see if it gives any more helpful
errors:
:python import sys
:python print(sys.version)
:python import ctypes
If the first command fails it means Vim can't find your python library at all.
If the first two commands work, check to make sure the version Vim finds is 2.7.
If it's finding 2.7, the last command should at least print out some more
helpful error messages.
Original comment by nicora...@gmail.com
on 28 Nov 2011 at 11:32
Thanks for the debugging tips! This lead me to find out that I had the 64bit
version of python 2.7 installed (which also came with the 32bit version). The
solution was to uninstall and download/install just the 32bit version.
:python import sys worked
:python print(sys.version) returns:
2.7.2 (default, June 12, 2011, 15:08:59) [MSC v.1500 32 bit (Intel)]
Interestingly, when I run print(sys.version) inside a python shell, I see it is
a 64bit version...
:python import ctypes returns:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "D:\opt\Python27\Lib\ctypes\__init__.py", line 10, in <module>
from _ctypes import Union, Structure, Array
Import Error: DLL load failed: %1 is not a valid Win32 application.
After uninstalling the 64 bit version of Python and only installing the 32bit
version, conqueterm works.
Thanks again.
Original comment by darcypar...@gmail.com
on 29 Nov 2011 at 12:04
Original comment by nicora...@gmail.com
on 30 Nov 2011 at 11:31
Original issue reported on code.google.com by
darcypar...@gmail.com
on 28 Nov 2011 at 11:15