KARTHIK RAJ
KARTHIK RAJ

Reputation: 1

RedHat instance Python installation

When I try to install Python 2.7.8 in RedHat EC2 instance it is saying that "No package python27 available". What does it mean? Does RedHat 7.4 has no Python27 collection in its software bundle? My current verion is Python 2.7.5.

Upvotes: 0

Views: 129

Answers (2)

null
null

Reputation: 367

try to install it using an external package :

rpm -Uvh https://buildlogs.centos.org/centos/7/sclo/x86_64/rh/python27/python27-python-2.7.8-3.el7.x86_64.rpm

Upvotes: 0

Vorsprung
Vorsprung

Reputation: 34447

yum search python2

it's called python2 not python27

It is usually installed by default

Upvotes: 1

Related Questions