主页: [url]http://www.tcl.tk[/url]
下载地址: [url]http://www.tcl.tk/software/tcltk/downloadnow84.tml[/url]
wget [url]http://nchc.dl.sourceforge.net/sourceforge/tcl/tcl8.4.11-src.tar.gz[/url]
wget [url]http://nchc.dl.sourceforge.net/sourceforge/tcl/tk8.4.11-src.tar.gz[/url]
tar xfvz tcl8.4.11-src.tar.gz
tar xfvz tk8.4.11-src.tar.gz
cd tcl8.4.11
cd unix
./configure --prefix=/usr/tcl --enable-shared
make
make install
暂时不要删除tcl源代码,因为expect的安装过程还需要用。
主页: [url]http://expect.nist.gov/[/url]
wget [url]http://expect.nist.gov/expect.tar.gz[/url]
tar xfvz expect.tar.gz
cd expect-5.43
./configure --prefix=/usr/expect --with-tcl=/usr/tcl/lib --with-tclinclude=
/tcl源代码路径/generic
make install