2

Whenever I try to open any text file using vi or vim, I get the following error,

vim: error while loading shared libraries: libtcl8.5.so.0: cannot open shared object file: No such file or directory

I compiled and installed tcl 8.6 from source to take care of this dependency but it still doesnt work. What could be the issue?

kiri
  • 28,986

2 Answers2

2

Try this command in a terminal:

sudo apt-get --reinstall install tcl8.5
kiri
  • 28,986
1

Please install vim using

sudo apt-get install vim

and use

sudo apt-get -f install

if there are any dependency problems.

kiri
  • 28,986
Jay
  • 2,370