Skip to content

Instantly share code, notes, and snippets.

@kennedyj
Last active December 18, 2015 03:09
Show Gist options
  • Select an option

  • Save kennedyj/5716061 to your computer and use it in GitHub Desktop.

Select an option

Save kennedyj/5716061 to your computer and use it in GitHub Desktop.
Install the python linkchecker application with fixes for the install action. https://github.com/wummel/linkchecker
#!/bin/bash
cd /tmp
echo "# Downloading linkchecker v8.2"
curl -L 'https://github.com/wummel/linkchecker/archive/v8.2.zip' -o /tmp/linkchecker-v8.2.zip
unzip /tmp/linkchecker-v8.2.zip
cd linkchecker*
make -C doc/html
python setup.py sdist --manifest-only
python setup.py build
touch doc/html/lcdoc.qch doc/html/lccollection.qhc
echo "# Installing as sudo"
sudo python setup.py install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment