Skip to content

Instantly share code, notes, and snippets.

@lukasender
Last active August 29, 2015 14:27
Show Gist options
  • Save lukasender/22a99857bb81130bd533 to your computer and use it in GitHub Desktop.
Save lukasender/22a99857bb81130bd533 to your computer and use it in GitHub Desktop.
~/.buildout/ setup for OS X
#!/bin/sh
mkdir -p ~/.buildout/{cache,eggs}
cat << EOF > ~/.buildout/default.cfg
[buildout]
eggs-directory = /Users/$(whoami)/.buildout/eggs
download-cache = /Users/$(whoami)/.buildout/cache
index = http://pypi.python.org/simple
EOF
@lukasender
Copy link
Author

How to Use

  • Download,
  • provide execute privileges (chmod +x setup-buildout.sh),
  • and run it: ./setup-buildout.sh

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