From 6447e2140adae18ecb6a6c7656e6f38332e5f3d7 Mon Sep 17 00:00:00 2001 From: James Allen Date: Fri, 21 Feb 2014 19:16:01 +0000 Subject: [PATCH] Update latexmk install instructions --- server-ce/README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/server-ce/README.md b/server-ce/README.md index e138e90bfc..849b6b1e3d 100644 --- a/server-ce/README.md +++ b/server-ce/README.md @@ -42,7 +42,14 @@ ShareLaTeX should run on OS X and Linux. You need: * [Node.js](http://nodejs.org/) 0.10 or greater * The [grunt](http://gruntjs.com/) command line tools (Run `npm install -g grunt-cli` to install them) * A local instance of [Redis](http://redis.io/) (version 2.6 or later) and [MongoDB](http://www.mongodb.org/) running on their standard ports. -* An up to date version of [TeXLive](https://www.tug.org/texlive/), with the `latexmk` program installed (should be included by default in TeXLive). +* An up to date version of [TeXLive](https://www.tug.org/texlive/), with the `latexmk` program installed. You need latexmk from TeXLive 2013 (or the later). If you're on an older version, or aren't sure, then the following commands will install the latest version locally: + + ```bash + $ mkdir ~/bin + $ curl http://mirror.physik-pool.tu-berlin.de/tex-archive/support/latexmk/latexmk.pl > ~/bin/latexmk + $ chmod a+x ~/bin/latexmk + $ export PATH=~/bin:$PATH + ``` Config ------