-
-
Save youqingkui/b32573f289b2b2a4dc0a9b0961e26d60 to your computer and use it in GitHub Desktop.
Revisions
-
selfboot renamed this gist
Jun 20, 2016 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
selfboot revised this gist
Jun 20, 2016 . 1 changed file with 13 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -2,4 +2,16 @@ # According to: # How To Set Up Python 2.7.6 and 3.3.3 on CentOS 6.4 # https://www.digitalocean.com/community/tutorials/how-to-set-up-python-2-7-6-and-3-3-3-on-centos-6-4 yum -y update yum groupinstall -y 'development tools' yum install -y zlib-dev openssl-devel sqlite-devel bzip2-devel yum install xz-libs wget http://www.python.org/ftp/python/2.7.10/Python-2.7.10.tar.xz xz -d Python-2.7.10.tar.xz tar -xvf Python-2.7.10.tar cd Python-2.7.10 ./configure --prefix=/usr/local make make altinstall export PATH="/usr/local/bin:$PATH" -
selfboot renamed this gist
Jun 20, 2016 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ #!/bin/bash # According to: # How To Set Up Python 2.7.6 and 3.3.3 on CentOS 6.4 -
selfboot created this gist
Jun 20, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ # According to: # How To Set Up Python 2.7.6 and 3.3.3 on CentOS 6.4 # https://www.digitalocean.com/community/tutorials/how-to-set-up-python-2-7-6-and-3-3-3-on-centos-6-4