是否可以更改Syntax用于语法检查的python版本?
由于问题https://github.com/scrooloose/syntastic/issues/385表明我可以使用虚拟环境。但是它也可能只是使用合成或vim命令?
以下不再需要,如果您被迫使用严格的python 2.x脚本,可能会出现这种情况。
原文链接:https://www.f2er.com/bash/387798.html最好的选择是将Syntax默认值保留下来,并使用conda来管理python 3和2的各个环境(每个环境都有自己的特定版本的flake8,pyflakes等),并切换到适当的环境进行编辑每个文件。然后,Syntastic将根据激活的环境中设置的路径调用python / flake8 / any。
Q. The python checker complains about syntactically valid Python 3 constructs…
A. Configure the python checker to call a Python 3 interpreter rather than Python 2,e.g:
let g:syntastic_python_python_exec = '/path/to/python3'