然后 重新编译tcl tk
[code:1]tcl:tar zxvf tcl*.tar.gz
cd tcl*/unix
./configure --prefix=/usr
make
make install
ln -s /usr/bin/tclsh8.5 /usr/bin/tclsh
tk:
tar zxvf tk*
cd tk*/unix
./configure --with-tcl=/usr/lib
make
make install
ln -s /usr/bin/wish8.5 /usr/bin/wish[/code:1]