This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# update install packages | |
yum update -y | |
# install build tools | |
yum install make automake gcc gcc-c++ kernel-devel git-core -y | |
# install python 2.7 and change default python symlink | |
yum install python27-devel -y | |
rm /usr/bin/python | |
ln -s /usr/bin/python2.7 /usr/bin/python |
NewerOlder