|
Last change
on this file since 24313 was 24313, checked in by Mathieu Morlighem, 6 years ago |
|
merged trunk-jpl and trunk for revision 24310
|
-
Property svn:executable
set to
*
|
|
File size:
437 bytes
|
| Line | |
|---|
| 1 | #!/bin/bash
|
|---|
| 2 | set -eu
|
|---|
| 3 |
|
|---|
| 4 | #Some cleanup
|
|---|
| 5 | rm -rf src
|
|---|
| 6 | rm -rf ipython-1.0.0
|
|---|
| 7 | mkdir src
|
|---|
| 8 |
|
|---|
| 9 | #Download from ISSM server
|
|---|
| 10 | $ISSM_DIR/scripts/DownloadExternalPackage.sh 'https://issm.ess.uci.edu/files/externalpackages/ipython-1.0.0.tar.gz' 'ipython-1.0.0.tar.gz'
|
|---|
| 11 |
|
|---|
| 12 | #Untar
|
|---|
| 13 | tar -zxvf ipython-1.0.0.tar.gz
|
|---|
| 14 |
|
|---|
| 15 | #Move ipython into src directory
|
|---|
| 16 | mv ipython-1.0.0/* src
|
|---|
| 17 | rm -rf ipython-1.0.0
|
|---|
| 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.