TclとTkの2つある。
http://www.tcl.tk/software/tcltk/download.html

/home/pi下に保存される。
Tarコマンドで解凍。
$ tar zxvf tcl8.6.1-src.tar.gz
$ tar zxvf tk8.6.1-src.tar.gz
こうして得られたtcl8.6.1とtk8.6.1のディレクトリの中のunixの中にお目当てのconfigureがある。
$ cd tcl8.6.1/unix
$ ./configure --prefix=/usr
$ make
$ make test
$ make install
$ cd ../..
$ cd tk8.6.1/unix
$ ./configure --prefix=/usr --with-tcl=../../tcl8.6.1/unix
$ make
$ make test
$ make install
Leafpadでパスを通す記述。
~/.bash-profile(編集)
PATH=$PATH:/usr/bin
export PATH
自分の場合は、/home/pi下の隠しファイルを表示させて、編集した。
Lxterminalから、wish8.6と入力。
ウィンドウが立ち上がるのを確認。
Tkコマンド【目次】