470
edits
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
== Mac OS X 10.7 (aka Lion) == | |||
=== core dev tools === | |||
* Install Firefox | |||
* Install from Apple the XCode package and then ensure that you also install from it the Command Line Tools | |||
* Install the HomeBrew environment | |||
** https://github.com/mxcl/homebrew/wiki/installation | |||
/usr/bin/ruby -e "$(/usr/bin/curl -fsSL https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb)" | |||
* Edit your bash profile to make sure the HomeBrew environment is preferred: | |||
export PATH=/Users/bear/bin:/usr/local/bin:/usr/local/share/python:/usr/bin:/bin:/usr/sbin:/sbin:/opt/bin:/opt/sbin:/usr/X11/bin | |||
* Install tools | |||
brew install python | |||
brew install git | |||
brew install mercurial | |||
brew install zeromq | |||
brew install pyzmq | |||
easy_install pip | |||
* Install gnupg | |||
brew install pth | |||
brew install libksba | |||
brew install libgcrypt | |||
brew install libassuan | |||
cd ~/Downloads | |||
wget ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-2.0.19.tar.bz2 | |||
cd ~/installs | |||
tar xf ~/Downloads/gnupg-2.0.19.tar.gz2 | |||
cd gnupg-2.0.19 | |||
./configure | |||
make install | |||
== Mac OS X 10.6 (aka Snow Leopard) == | == Mac OS X 10.6 (aka Snow Leopard) == | ||
edits