In regards to yum install

J

joemc3

Guest
I wanted to install ansible and play around with it.

yum install ansible and It doesn't work. I was under the impression it would check and install all dependencies first. I then installed ruby and can't figure out ma way to launch it. I did exec ruby and run ruby. I am new to linux and have major issues installing and running what is installed. Any help as to what I am doing wrong?
 


I did the ansible install guide, being new to linux it all looked foreign to me.
 
lowendbox link worked for the fist command yum install install python-pip python-devel. the next command didn't work, pip install ansible. My computer says pip command not found. Why does linux make it so hard to like it!
 
CentOS 32bit or 64bit?
Desktops:
32bit:
Code:
rpm -Uvh http://mirror.sfo12.us.leaseweb.net/epel/6/i386/epel-release-6-8.noarch.rpm
Code:
 yum install ansible -y
64bit:
Code:
rpm -Uvh http://mirror.sfo12.us.leaseweb.net/epel/6/x86_64/epel-release-6-8.noarch.rpm
Code:
yum install ansible -y
Servers:
32bit:
Code:
rpm -Uvh http://mirror.sfo12.us.leaseweb.net/epel/6Server/i386/epel-release-6-8.noarch.rpm
Code:
 yum install ansible -y
64bit:
Code:
rpm -Uvh http://mirror.sfo12.us.leaseweb.net/epel/6Server/x86_64/epel-release-6-8.noarch.rpm
Code:
yum install ansible -y
 


Latest posts

Top