Skip to content

Commit

Permalink
Add centos script to deploy python3.4.3 from source
Browse files Browse the repository at this point in the history
  • Loading branch information
ardumont committed Jul 2, 2015
1 parent 9848d97 commit e2a2f3a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions centos/deploy-centos-python3.sh
@@ -0,0 +1,11 @@
#!/usr/bin/env bash


sudo yum groupinstall "Development tools"
wget https://www.python.org/ftp/python/3.4.3/Python-3.4.3.tgz -O /var/tmp/Python-3.4.3.tar.gz

tar xvf /var/tmp/Python-3.4.3.tar.gz -C /var/tmp

cd /var/tmp/Python-3.4.3
make
sudo make altinstall

0 comments on commit e2a2f3a

Please sign in to comment.