Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install expect and tcl on linux RHEL server 6.5

Tags:

redhat

expect

tcl

I am new to linux and i have few expect scripts to execute. I read few blogs on how to install expect and tcl. The command i am trying is

sudo yum install expect
sudo yum install tcl

I am getting

No package expect available
No package tcl available

It seems RHEL should have tcl and expect prebuilt but this is not the case in my version of linux.

How should i proceed from here ? Help will be highly appreciated..Thanks :)

like image 527
Vrushank Doshi Avatar asked Nov 28 '25 15:11

Vrushank Doshi


1 Answers

Install the development tools: yum groupinstall "Development tools"

then

./configure make make install

should be good to go.

like image 130
mdoldan Avatar answered Nov 30 '25 04:11

mdoldan