Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 Macbook (OSX Lion) 上,我正在运行带有 Vim 7.3 的 python 2.7 并安装了 pyflakes。
我按照此处描述的步骤进行操作,但使用 macports 安装了 pyflakes、pylint 和 pep8。
运行Bundleinstall并启动新的 Vim 后,我收到以下错误消息:
Bundleinstall
Import Error: cant find module ast
由于 vim < 7.3.430 版本中的错误,vundlefiletype on在配置期间可能不喜欢。但是,pyflakes 需要filetype on
filetype on
如果您无法更新 vim 以逃避该错误,则一种解决方法是在 vundle 配置 pyflakes 之前翻转文件类型,然后再退出。例如
filetype on Bundle 'kevinw/pyflakes-vim' filetype off