source: issm/trunk-jpl/externalpackages/cython/install.sh

Last change on this file was 17101, checked in by glperez, 11 years ago

CHG: Install script now clones directly from main development branch. This was done in order to stay consistent with SciPy.

  • Property svn:executable set to *
File size: 167 bytes
Line 
1#!/bin/bash
2set -eu
3
4#clean up
5rm -rf cython
6
7#download cython first
8git clone https://github.com/cython/cython.git
9
10#install cython
11cd cython
12python setup.py install
Note: See TracBrowser for help on using the repository browser.