From f8ee30982029c0d91e1fac529bea8038af0cfa6b Mon Sep 17 00:00:00 2001 From: Maxwell Paul Brickner Date: Sun, 16 Apr 2017 19:02:01 -0400 Subject: [PATCH] Documentation update I updated the documentation to include instructions to install dependencies for torch on recent Ubuntu releases. Thanks! ^ _ ^ --- INSTALL.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/INSTALL.md b/INSTALL.md index f360adc..b119d8e 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -7,6 +7,14 @@ This guide will walk you through the setup for `neural-style` on Ubuntu. First we need to install torch, following the installation instructions [here](http://torch.ch/docs/getting-started.html#_): +Torch depends on cmake and libreadline-dev. To install Torch, run the following first. + +``` +sudo apt-get install cmake libreadline-dev +``` + +Now that the dependencies have been installed, we can install torch. + ``` # in a terminal, run the commands cd ~/