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

Last change on this file since 13395 was 13395, checked in by Mathieu Morlighem, 12 years ago

merged trunk-jpl and trunk for revision 13393

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