Changeset 1696
- Timestamp:
- 07/14/10 13:17:10 (8 weeks ago)
- URL:
- http://svn.nequal.jp/
- File:
-
- 1 copied
-
public/dotfiles/sotarok/misc/python27.sh (copied) (copied from public/dotfiles/sotarok/misc/python26.sh) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
public/dotfiles/sotarok/misc/python27.sh
r1414 r1696 1 1 #!/bin/sh 2 2 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 .. 3 VERSION="2.7" 4 test -f Python-${VERSION}.tar.bz2 || wget http://www.python.org/ftp/python/${VERSION}/Python-${VERSION}.tar.bz2 5 tar jxvf Python-${VERSION}.tar.bz2 6 cd Python-${VERSION} && ./configure && make && sudo make install && cd .. 6 7 7 8 wget http://peak.telecommunity.com/dist/ez_setup.py
Note: See TracChangeset
for help on using the changeset viewer.
