Created
April 2, 2015 11:31
-
-
Save jimaek/c0ff8ea084672dd43926 to your computer and use it in GitHub Desktop.
Install Python 2.7 on CentOS 6.5 to run cedexis.radar for jsDelivr
This file contains 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
yum install gcc zlib-devel bzip2-devel openssl-devel xz-libs xz -y | |
wget http://www.python.org/ftp/python/2.7.8/Python-2.7.8.tar.xz | |
xz -d Python-2.7.8.tar.xz | |
tar -xvf Python-2.7.8.tar | |
cd Python-2.7.8 | |
./configure --prefix=/usr/local | |
make | |
make altinstall | |
curl https://raw.githubusercontent.com/pypa/pip/master/contrib/get-pip.py | python2.7 - | |
pip2.7 install cedexis.radar | |
/usr/local/bin/cedexis-radar-cli -c 11475 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment