Amazon Linux AMIにtkライブラリをインストールする方法です。
tkライブラリはX11に含まれているようです。そのため以下のようにインストールします。
yum install libX11-devel
また、CentOSのリポジトリからインストールする方法もあります。
vim /etc/yum.repos.d/CentOS-Base.repo ----------------------------------------------------- [centos] name=CentOS-6 - Base mirrorlist=http://mirrorlist.centos.org/?release=6&arch=x86_64&repo=os enabled=0 gpgcheck=1 gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6 ----------------------------------------------------- yum install --enablerepo=centos tk tk-devel