aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/ci_build/install/install_pip_packages.sh
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-04-20 13:06:22 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-04-20 15:12:22 -0700
commit071f742f203c53b173dcc06f9657cd614590198c (patch)
treef69bd9414a215ebf560b6f3542f33913fba7ed45 /tensorflow/tools/ci_build/install/install_pip_packages.sh
parentd5a9b241c85c2dbdf481f4529d81da5c1f1a45f8 (diff)
Use pip to install scipy to get the latest version
Change: 120373846
Diffstat (limited to 'tensorflow/tools/ci_build/install/install_pip_packages.sh')
-rwxr-xr-xtensorflow/tools/ci_build/install/install_pip_packages.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/tensorflow/tools/ci_build/install/install_pip_packages.sh b/tensorflow/tools/ci_build/install/install_pip_packages.sh
index ba3d22bc11..5bd45f726c 100755
--- a/tensorflow/tools/ci_build/install/install_pip_packages.sh
+++ b/tensorflow/tools/ci_build/install/install_pip_packages.sh
@@ -16,6 +16,11 @@
set -e
+# Use pip to install scipy to get the latest version, instead of 0.13 through
+# apt-get
+pip install scipy==0.15.1
+pip3 install scipy==0.15.1
+
pip install sklearn
pip3 install scikit-learn