1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-17 11:10:20 +01:00

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)
This commit is contained in:
Gal Leibovich
2017-10-23 10:51:48 +03:00
committed by GitHub
parent aceddfadc9
commit 7c5d0ed01b

View File

@@ -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 ..