【介绍】
Tcl 是“工具控制语言(Tool Control Language)”的缩写。Tk 是 Tcl“图形工具箱”的扩展,它提供各种标准的 GUI 接口项,以利于迅速进行高级应用程序开发。
参考:https://www.ibm.com/developerworks/cn/education/linux/l-tcl/l-tcl-blt.html
【yum安装】
yum install tcl
【从源码编译安装】
参考:http://www.tcl.tk/doc/howto/compile#unix
参考:http://www.linuxfromscratch.org/blfs/view/cvs/general/tcl.html
下载:http://www.tcl.tk/software/tcltk/download.html
实证版本:Tcl-8.6.10
wget http://prdownloads.sourceforge.net/tcl/tcl8.6.10-src.tar.gz && tar zxvf tcl8.6.10-src.tar.gz && cd tcl8.6.10/unix && ./configure options && make && make test && make install
实证版本:Tcl-8.6.9
wget http://prdownloads.sourceforge.net/tcl/tcl8.6.9-src.tar.gz && tar zxvf tcl8.6.9-src.tar.gz && cd tcl8.6.9/unix && ./configure options && make && make test && make install