I am trying to install plugin for python in vim,but i am unable to do that. I removed vi tiny from Raspberry pi and installed vi 8.0 I followed instruction from this site
https://realpython.com/vim-and-python-a-match-made-in-heaven/
I updated my vimrc file from sudo user in folder /home/etc/vim/vimrc
added these lines in vimrc file.
set nocompatible " required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
" add all your plugins here (note older versions of Vundle
" used Bundle instead of Plugin)
" ...
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
whenever I trying to install plugin I get an error E942: Not an editor command: PluginInstall E942 error Image
when typing :Scriptname in VIM it show this