diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-01-07 12:52:44 +0100 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-01-07 12:52:44 +0100 |
commit | d719d79ebc9168afe73cbc6fdd7714959601aae3 (patch) | |
tree | df5a568d544edae4355665697ab99034a23fdd87 | |
parent | 4da41bdb8ec18b6bdb9bb893532abc40939946dd (diff) | |
download | pandoc-d719d79ebc9168afe73cbc6fdd7714959601aae3.tar.gz |
Added instructions for manual install from oxs, win packages.
-rw-r--r-- | INSTALL.md | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/INSTALL.md b/INSTALL.md index de2144982..e6d0eecb0 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -7,6 +7,18 @@ - For PDF output, you'll also need to install LaTeX. We recommend [MiKTeX](http://miktex.org/). + - If you'd prefer, you can extract the pandoc and pandoc-citeproc + executables from the MSI and copy them directly to any directory, + without running the installer. Here is an example showing how to + extract the executables from the pandoc-1.19.1 installer and copy + them to `C:\Utils\Console\`: + + mkdir "%TEMP%\pandoc\" + start /wait msiexec.exe /a pandoc-1.19.1-windows.msi /qn targetdir="%TEMP%\pandoc\" + copy /y "%TEMP%\pandoc\pandoc.exe" C:\Utils\Console\ + copy /y "%TEMP%\pandoc\pandoc-citeproc.exe" C:\Utils\Console\ + rmdir /s /q "%TEMP%\pandoc\" + ## Mac OS X - There is a package installer at pandoc's [download page]. @@ -14,6 +26,16 @@ by downloading [this script][uninstaller] and running it with `perl uninstall-pandoc.pl`. + - It is possible to extract the pandoc and pandoc-citeproc + executables from the osx pkg file, if you'd rather not run + the installer. To do this (for the version 1.19.1 package): + + mkdir pandoc-extract + cd pandoc-extract + xar -x ../pandoc-1.19.1-osx.pkg + cat pandoc.pkg/Payload | gunzip -dc | cpio -i + # executables are now in ./usr/bin/, man pages in ./usr/share/man + - You can also install pandoc using [homebrew](http://brew.sh): `brew install pandoc`. |