Skip to content

Instantly share code, notes, and snippets.

@bigsnarfdude
Created September 9, 2016 15:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bigsnarfdude/a60ede5f06000f59eb7f452722e230e6 to your computer and use it in GitHub Desktop.
Save bigsnarfdude/a60ede5f06000f59eb7f452722e230e6 to your computer and use it in GitHub Desktop.
syntaxnet install Ubuntu 14.04
#!/bin/bash
set -e
apt-get update -q
apt-get upgrade -q -y
apt-get install -y software-properties-common
add-apt-repository ppa:webupd8team/java < /dev/null
apt-get update -q
echo debconf shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selections
echo debconf shared/accepted-oracle-license-v1-1 seen true | sudo debconf-set-selections
apt-get install -y oracle-java8-installer
apt-get install -y pkg-config zip zlib1g-dev unzip g++
wget -q -nc https://github.com/bazelbuild/bazel/releases/download/0.2.2/bazel_0.2.2-linux-x86_64.deb
dpkg -i bazel_0.2.2-linux-x86_64.deb
apt-get install -y git python-pip python-numpy python-dev
apt-get install -y swig
pip install -U protobuf==3.0.0b2
pip install asciitree
if [ ! -d models ]; then
git clone --recursive https://github.com/tensorflow/models.git
fi
cd models/syntaxnet/tensorflow
./configure < /dev/null
cd ..
bazel --output_user_root=bazel_root test syntaxnet/... util/utf8/...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment