Index: /issm/trunk-jpl/externalpackages/scipy/README
===================================================================
--- /issm/trunk-jpl/externalpackages/scipy/README	(revision 11782)
+++ /issm/trunk-jpl/externalpackages/scipy/README	(revision 11782)
@@ -0,0 +1,2 @@
+You will find instructions on scipy at: 
+http://www.scipy.org/Installing_SciPy/Mac_OS_X#head-ba1926aec910a9a1deaf9eff99e38ee23103a3b3
Index: /issm/trunk-jpl/externalpackages/scipy/install-macosx64.sh
===================================================================
--- /issm/trunk-jpl/externalpackages/scipy/install-macosx64.sh	(revision 11782)
+++ /issm/trunk-jpl/externalpackages/scipy/install-macosx64.sh	(revision 11782)
@@ -0,0 +1,39 @@
+#!/bin/bash
+
+#1: install numpy
+#2 install scipy
+#3 erase
+install=2;
+
+
+export CC=gcc
+export CXX=g++
+export FFLAGS=-ff2c
+
+
+if [[ $install == "1" ]];then 
+
+	#download numpy first
+	git clone https://github.com/numpy/numpy.git
+
+	#install numpy
+	cd numpy
+	python3 setup.py build
+	python3 setup.py install
+
+	
+elif [[ $install == "2" ]];then 
+	
+	#download scipy
+	git clone https://github.com/scipy/scipy.git
+
+	#install scipy
+	cd scipy
+	python3 setup.py build
+	python3 setup.py install
+
+elif [[ $install == "3" ]];then 
+	rm -rf numpy scipy
+else 
+	echo "Choice not covered"
+fi
