I followed a tutorial toon vim setup and used wget to load someone's .vimrc .
On opening a file with vim, i get the following errors:
Error detected while processing function pymode#breakpoint#init
line 29:
Traceback (most recent call last):
File "<string>", line 2, in <module>
ImportError: No module named six
This is then followed by
Error detected while processing /home/bridge/c/sheth7/.vim/bundle/python-mode/autoload/pymode/lint.vim
line 1:
Traceback (most recent call last):
Press ENTER or type command to continue
Error detected while processing /home/bridge/c/sheth7/.vim/bundle/python-mode/autoload/py
mode/lint.vim:
line 1:
File "<string>", line 1, in <module>
Press ENTER or type command to continue
Error detected while processing /home/bridge/c/sheth7/.vim/bundle/python-mode/autoload/py
mode/lint.vim:
line 1:
File "/home/bridge/c/sheth7/.vim/bundle/python-mode/pymode/lint.py", line 9, in <module
>
Press ENTER or type command to continue
Error detected while processing /home/bridge/c/sheth7/.vim/bundle/python-mode/autoload/py
mode/lint.vim:
line 1:
from pylama.lint.extensions import LINTERS
Press ENTER or type command to continue
Error detected while processing /home/bridge/c/sheth7/.vim/bundle/python-mode/autoload/py
mode/lint.vim:
line 1:
ImportError: No module named pylama.lint.extensions
Press ENTER or type command to continue
my vim --version:
VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Jul 9 2019 02:33:15)
Included patches: 1-207, 209-629
Modified by <bugzilla@redhat.com>
Compiled by <bugzilla@redhat.com>
Huge version without GUI. Features included (+) or not (-):
+acl +farsi +mouse_netterm +syntax
+arabic +file_in_path +mouse_sgr +tag_binary
+autocmd +find_in_path -mouse_sysmouse +tag_old_static
-balloon_eval +float +mouse_urxvt -tag_any_white
-browse +folding +mouse_xterm -tcl
++builtin_terms -footer +multi_byte +terminfo
+byte_offset +fork() +multi_lang +termresponse
+cindent +gettext -mzscheme +textobjects
-clientserver -hangul_input +netbeans_intg +title
-clipboard +iconv +path_extra -toolbar
+cmdline_compl +insert_expand +perl +user_commands
+cmdline_hist +jumplist +persistent_undo +vertsplit
+cmdline_info +keymap +postscript +virtualedit
+comments +langmap +printer +visual
+conceal +libcall +profile +visualextra
+cryptv +linebreak +python/dyn +viminfo
+cscope +lispindent -python3 +vreplace
+cursorbind +listcmds +quickfix +wildignore
+cursorshape +localmap +reltime +wildmenu
+dialog_con -lua +rightleft +windows
+diff +menu -ruby +writebackup
+digraphs +mksession +scrollbind -X11
-dnd +modify_fname +signs -xfontset
-ebcdic +mouse +smartindent -xim
+emacs_tags -mouseshape -sniff -xsmp
+eval +mouse_dec +startuptime -xterm_clipboard
+ex_extra +mouse_gpm +statusline -xterm_save
+extra_search -mouse_jsbterm -sun_workshop -xpm
system vimrc file: "/etc/vimrc"
user vimrc file: "$HOME/.vimrc"
2nd user vimrc file: "~/.vim/vimrc"
user exrc file: "$HOME/.exrc"
fall-back for $VIM: "/etc"
f-b for $VIMRUNTIME: "/usr/share/vim/vim74"
Compilation: gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1
Linking: gcc -Wl,-E -Wl,-rpath,/usr/lib64/perl5/CORE -L/usr/local/lib -Wl,--as-needed -o vim -lm -lnsl -lselinux -ltinfo -lacl -lattr -lgpm -Wl,-E -Wl,-rpath,/usr/lib64/perl5/CORE -fstack-protector -L/usr/lib64/perl5/CORE -lperl -lresolv -lnsl -ldl -lm -lcrypt -lutil -lpthread -lc
I used the vimrc2 file and created the .vim folder stucture as shown in the vim-notes.txt file
– sheth7 Jul 31 '19 at 19:45