Last active
July 15, 2018 13:30
Revisions
-
linjunpop revised this gist
Mar 27, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export PATH="$HOME/.cabal/bin:$PATH" ## Convert to PDF > For PDF output, you’ll also need LaTeX. We recommend installing BasicTeX (64M), and using the tlmgr tool to install additional > packages as needed. > -- http://johnmacfarlane.net/pandoc/installing.html ### Install BasicTex -
linjunpop revised this gist
Mar 27, 2013 . 1 changed file with 22 additions and 3 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,8 @@ # Install [pandoc](https://github.com/jgm/pandoc) on Mac OS X 10.8 ## Install ### Install haskell-platform ```bash $ brew install haskell-platform @@ -12,14 +14,31 @@ Update `cabal` $ cabal update ``` ### Install pandoc ```bash $ cabal install pandoc ``` ### Set PATH in `~/.zshenv` ```bash export PATH="$HOME/.cabal/bin:$PATH" ``` ## Convert to PDF > For PDF output, you’ll also need LaTeX. We recommend installing BasicTeX (64M), and using the tlmgr tool to install additional > packages as needed. > - http://johnmacfarlane.net/pandoc/installing.html ### Install BasicTex http://www.tug.org/mactex/morepackages.html Direct Link: http://mirror.ctan.org/systems/mac/mactex/mactex-basic.pkg ### set PATH ```bash export PATH="/usr/local/texlive/2012basic/bin/universal-darwin:$PATH" ``` -
linjunpop created this gist
Mar 27, 2013 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ # Install [pandoc](https://github.com/jgm/pandoc) on Mac OS X 10.8 ## Install haskell-platform ```bash $ brew install haskell-platform ``` Update `cabal` ```bash $ cabal update ``` ## Install pandoc ```bash $ cabal install pandoc ``` ## Set PATH in `~/.zshenv` ```bash export PATH="$HOME/.cabal/bin:$PATH" ```