Skip to content

Instantly share code, notes, and snippets.

@asciimo
Last active March 6, 2020 11:32
Show Gist options
  • Save asciimo/b386313f79f21fe11037e68f6cd5f167 to your computer and use it in GitHub Desktop.
Save asciimo/b386313f79f21fe11037e68f6cd5f167 to your computer and use it in GitHub Desktop.
Running Comply 1.2.6 on Lubuntu 18.04 (minimal install)

To get Comply running on Lubuntu 18.04 minimal install, I had to:

Download comply-v1.2.6-linux-amd64.tgz from the Comply releases page, and ensure it's my executable path:

curl -LO https://github.com/strongdm/comply/releases/download/v1.2.6/comply-v1.2.6-linux-amd64.tgz
tar -xzvf comply-v1.2.6-linux-amd64.tgz
sudo ln -s $PWD/comply-v1.2.6-linux-amd64 /usr/local/bin/comply

Download the latest pandoc 2.x binary from here because the latest Ubuntu package is 1.19.x

tar -xzvf pandoc-2.2.2.1-linux.tar.gz
sudo cp pandoc-2.2.2.1/bin/pandoc /usr/local/bin/

Follow the instructions here to install pdflatex:

sudo apt-get install texlive-latex-base
sudo apt-get install texlive-fonts-recommended
sudo apt-get install texlive-fonts-extra

From here, I followed the instructions in the comply README.md on GitHub.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment