simply installing vim wasn't enough, since :echo has('python') or :echo has('python3') always returned 0, so failing the execution with rather obscure errors. Installing the package vim-python-jedi solved the issue. This should be stated in the README.
Also the brutal execution of the python interpreter lead to "missing endif" error, and the "#" for python comments not recognized.
simply installing vim wasn't enough, since
:echo has('python')
or:echo has('python3')
always returned 0, so failing the execution with rather obscure errors. Installing the package vim-python-jedi solved the issue. This should be stated in the README.Also the brutal execution of the python interpreter lead to "missing endif" error, and the "#" for python comments not recognized.