通过Pathogen安装VIM-Latex时出现StringIO和String Import错误

时间:2014-06-13 19:55:00

标签: python vim latex osx-lion vim-plugin

我尝试使用运行OSX Lion 10.7.5的计算机上的Pathogen插件安装VIM-Latex。我将下载的VIM-Latex插件文件复制到我的〜/ .vim / bundle目录中。

我还根据指定的here指令编辑了.vimrc。

但是,我在尝试在MAC Vim中打开tex文档时遇到以下错误:

 File "/Users/username/.vim/bundle/vim-latex-1.8.23-20130116.788-git2ef9956/ftplugin/latex-  suite/outline.py", line 12, in <module>
import StringIO
ImportError: No module named StringIO   
Error detected while processing /Users/username/.vim/bundle/vim-latex-1.8.23-20130116.788-git2ef9956/ftplugin/latex-suite/main.vim:

File "/Users/username/.vim/bundle/vim-latex-1.8.23-20130116.788-git2ef9956/ftplugin/latex-suite/pytools.py", line 1, in <module>
import string, vim, re, os, glob
ImportError: No module named string

另外,我从导入StringIO和string的终端运行了一个基本的python脚本,两者似乎都被导入了。

我不确定问题出在哪里。由于我对VIM和安装插件都很新,我不确定如何调试此问题,因此,任何帮助都将是宝贵的!

谢谢!

1 个答案:

答案 0 :(得分:1)

Python 3.x中不提供

StringIOstring。要使此代码有效,您必须使用Python 2.x运行它,例如Python 2.7。