source:
issm/trunk/externalpackages/ipython/install.sh@
13395
Last change on this file since 13395 was 13395, checked in by , 12 years ago | |
---|---|
|
|
File size: 431 bytes |
Rev | Line | |
---|---|---|
[12136] | 1 | #!/bin/bash |
[13395] | 2 | set -eu |
[12136] | 3 | |
4 | #Some cleanup | |
5 | rm -rf src | |
[13395] | 6 | rm -rf ipython-0.13 |
7 | mkdir src | |
[12136] | 8 | |
[12189] | 9 | #Download from ISSM server |
[13395] | 10 | $ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/ipython-0.13.tar.gz' 'ipython-0.13.tar.gz' |
[12189] | 11 | |
[12136] | 12 | #Untar |
[13395] | 13 | tar -zxvf ipython-0.13.tar.gz |
[12136] | 14 | |
15 | #Move ipython into src directory | |
[13395] | 16 | mv ipython-0.13/* src |
17 | rm -rf ipython-0.13 | |
[12136] | 18 | |
19 | #install ipython | |
20 | cd src | |
21 | python setup.py build | |
22 | python setup.py install |
Note:
See TracBrowser
for help on using the repository browser.