Skip to content

Instantly share code, notes, and snippets.

@jimaek
Created April 2, 2015 11:31
Show Gist options
  • Save jimaek/c0ff8ea084672dd43926 to your computer and use it in GitHub Desktop.
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
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