Skip to content

Instantly share code, notes, and snippets.

@vidluther
Created February 26, 2012 00:27
Show Gist options
  • Save vidluther/1911860 to your computer and use it in GitHub Desktop.
Save vidluther/1911860 to your computer and use it in GitHub Desktop.
Quick and easy way to get the Nova and CLB tools running on os x
#!/bin/zsh
#### This could use some error checking but it's a gist, not a full blown program :)
#### Vid Luther (vid@zippykid.com)
sudo easy_install lockfile
sudo easy_install netaddr
sudo easy_install eventlet
mkdir ~/tmp
cd ~/tmp
git clone http://github.com/rackspace/python-novaclient.git
cd python-novaclient
sudo python setup.py install
cd ..
curl -O "http://python-gflags.googlecode.com/files/python-gflags-1.6.tar.gz"
tar zxvf python-gflags-1.6.tar.gz
cd python-gflags-1.6
sudo python setup.py install
cd ..
git clone http://github.com/openstack/nova.git
cd nova
sudo python setup.py install
cd ..
git clone https://github.com/calebgroom/clb.git
cd clb
sudo python setup.py install
echo "All Done, be sure to set your shell environment variables"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment