pyflakes (with ALE) automatically defaults to python2 instead of python3 and gives me false errors and there are no variables in ALE documentation letting me change python versions. Thanks for any help in advance.
P.S I just switched to MyPy linter, it defaults to python3
P.S (2) Got it! Add let g:ale_python_pyflakes_executable = 'pyflakes3' to your .vimrc
python3 -m pip– D. Ben Knoble Jul 04 '19 at 00:09apt install pyflakesfirst and then did bothpip3 install pyflakesandpip2 install pyflakesto make sure – Your move creep Jul 04 '19 at 00:21pip2is python2... and check the pyflakes in your path – D. Ben Knoble Jul 04 '19 at 00:22'let g:ale_python_pyflakes_executable = 'pyflakes3'to .vimrc. Amen – Your move creep Jul 04 '19 at 00:35