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
  • 27,676
  • 16
  • 81
  • 117
Jenson Jose
  • 123
  • 6

2 Answers2

2

Try this command in a terminal:

sudo apt-get --reinstall install tcl8.5
kiri
  • 27,676
  • 16
  • 81
  • 117
1

Please install vim using

sudo apt-get install vim

and use

sudo apt-get -f install

if there are any dependency problems.

kiri
  • 27,676
  • 16
  • 81
  • 117
Jay
  • 2,230
  • 2
  • 20
  • 30