Changeset 1696 for public


Ignore:
Timestamp:
07/14/10 13:17:10 (8 weeks ago)
Author:
sotarok
Message:

add python27

URL:
http://svn.nequal.jp/
File:
1 copied

Legend:

Unmodified
Added
Removed
  • public/dotfiles/sotarok/misc/python27.sh

    r1414 r1696  
    11#!/bin/sh 
    22 
    3 wget http://www.python.org/ftp/python/2.6.3/Python-2.6.3.tgz 
    4 tar zxvf Python-2.6.3.tgz 
    5 cd Python-2.6.3 && ./configure && make && sudo make install && cd .. 
     3VERSION="2.7" 
     4test -f Python-${VERSION}.tar.bz2 || wget http://www.python.org/ftp/python/${VERSION}/Python-${VERSION}.tar.bz2 
     5tar jxvf Python-${VERSION}.tar.bz2 
     6cd Python-${VERSION} && ./configure && make && sudo make install && cd .. 
    67 
    78wget http://peak.telecommunity.com/dist/ez_setup.py 
Note: See TracChangeset for help on using the changeset viewer.