Skip to content

Instantly share code, notes, and snippets.

@akoumjian
Created June 30, 2012 17:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akoumjian/3024723 to your computer and use it in GitHub Desktop.
Save akoumjian/3024723 to your computer and use it in GitHub Desktop.
Salt Development Environment
## Get OS/build dependancies
$ sudo apt-get install python2.7-dev build-essential libtool autoconf automake swig uuid-dev python-m2crypto python-setuptools
## Download 0MQ
$ wget http://download.zeromq.org/zeromq-2.2.0.tar.gz
## Unpack
$ tar -xvzf zeromq-2.2.0.tar.gz
## CD into dir
$ cd zeromq-2.2.0/
## configure and make (upon configure's success)
$ ./configure && make
## make install
$ sudo make install
## per 6. On Linux, run sudo ldconfig after installing ØMQ.
## http://www.zeromq.org/area:download
$ sudo ldconfig
## Install salt with requirements in development mode
$ cd /home/ubuntu/salt/
$ sudo python setup.py devel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment