Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,15 @@ There's also a [fun video](https://vimeo.com/146492001) by [@kcimc](https://twit

#### For evaluation only

This code is written in Lua and requires [Torch](http://torch.ch/). If you're on Ubuntu, installing Torch in your home directory may look something like:
This code is written in Lua and requires [Torch](http://torch.ch/).

If you're on Ubuntu, first install Torch build dependencies:

```bash
$ sudo apt-get install git cmake libreadline-dev
```

Then installing Torch in your home directory may look something like:

```bash
$ curl -s https://raw.githubusercontent.com/torch/ezinstall/master/install-deps | bash
Expand Down