当前位置: 代码迷 >> 综合 >> Error:the pyflakes.vim plugin requires Vim to be compiled with +python
  详细解决方案

Error:the pyflakes.vim plugin requires Vim to be compiled with +python

热度:51   发布时间:2023-12-05 17:13:45.0

在用vim打开python程序时,出现如下报错提示:

bug
图中显示的错误提示为:the pyflakes.vim plugin requires Vim to be compiled with +python.
大体上的意思是pyflakes.vim插件需要编译。(pyflakes.vim是一个非常好用的python高亮vim插件)

解决方法

  1. 去github重新下载一个pyflakes.vim。
git clone --recursive git://github.com/kevinw/pyflakes-vim.git
  1. 进入git克隆目录,./pyflakes-vim/ftplugin。将python目录下的所有文件复制到~/.vim/ftplugin目录下即可。
cp -r  ./python/   ~/.vim/ftplugin/ 

完成以上操作,再用vim打开python程序便不会报错了。

  相关解决方案