Skip to content

Instantly share code, notes, and snippets.

@sud0n1m
Created February 26, 2012 15:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sud0n1m/1917447 to your computer and use it in GitHub Desktop.
Save sud0n1m/1917447 to your computer and use it in GitHub Desktop.
Docco install commands for Lion assuming homebrew and nothing else.
brew install python
### Add python to the path so OSX doesn't use system python
export PATH="/usr/local/share/python:${PATH}"
### Install pip to install pygments
easy_install pip
pip install --upgrade distribute
### Install pygments for syntax highlighting
pip install pygments
### Install node, npm, coffeescript
brew install node
curl http://npmjs.org/install.sh | sh
npm install -g coffee-script
### Install docco
npm install -g docco
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment