From 7c5d0ed01bb726a72556a49c16c8e217dfeb97ed Mon Sep 17 00:00:00 2001 From: Gal Leibovich Date: Mon, 23 Oct 2017 10:51:48 +0300 Subject: [PATCH] Update install.sh to install virtualenv when installing neon this is required for a case the user asks the user *not* to install Coach in a virtualenv (and then the installer does not install virtualenv, which is required for neon) --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index d9c6d5f..3328467 100755 --- a/install.sh +++ b/install.sh @@ -191,7 +191,7 @@ if [ ${INSTALL_NEON} -eq 1 ]; then cd .. # Neon - sudo -E apt-get install libhdf5-dev libyaml-dev pkg-config clang -y + sudo -E apt-get install libhdf5-dev libyaml-dev pkg-config clang virtualenv -y git clone https://github.com/NervanaSystems/neon.git cd neon && make sysinstall -j cd ..