BUG : raspberrypi install failed ,cannot get python version
Hi developer,
I face this issue , the hardware is raspberrypi 3B+ detail please check attachment
########################################
root@raspberrypi:/tmp# vi /root/k-vim/bundle/vim-isort/plugin/python_vimisort.vim
UltiSnips requires py >= 2.7 or py3
YouCompleteMe unavailable: unable to load Python.
Error detected while processing /root/k
-vim/bundle/vim-isort/plugin/python_vimisort.vim:
line 17:
E605: Exception not caught: No python support present, vim-isort will be disabled
Press ENTER or type command to continue
1 if exists('g:vim_isort_python_version')
1 if g:vim_isort_python_version ==? 'python2'
2 command! -nargs=1 AvailablePython python
I've met the same problem like this...
Are you using a vim with the support of python?
you can see :version
Maybe you need a vim compiled with python support.
ps:
I met this because I install vim 8.1 from vim github source code
I met this issue too, so I reference:
sudo yum install python-devel
./configure --enable-pythoninterp=yes --enable-python3interp=yes && make && make install
Then, it's ok for me!