Created
February 26, 2012 15:54
-
-
Save sud0n1m/1917447 to your computer and use it in GitHub Desktop.
Docco install commands for Lion assuming homebrew and nothing else.
This file contains hidden or 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 characters
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