source: issm/trunk/externalpackages/ipython/install.sh@ 12332

Last change on this file since 12332 was 12332, checked in by Mathieu Morlighem, 13 years ago

merged trunk-jpl and trunk for revision 12326M

  • Property svn:executable set to *
File size: 444 bytes
RevLine 
[12136]1#!/bin/bash
2
3#Some cleanup
4rm -rf src
5rm -rf install
6rm -rf ipython-0.12
7mkdir src install
8
[12189]9#Download from ISSM server
10$ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/ipython-0.12.tar.gz' 'ipython-0.12.tar.gz'
11
[12136]12#Untar
13tar -zxvf ipython-0.12.tar.gz
14
15#Move ipython into src directory
16mv ipython-0.12/* src
17rm -rf ipython-0.12
18
19#install ipython
20cd src
21python setup.py build
22python setup.py install
Note: See TracBrowser for help on using the repository browser.