Solutions: Please watch the whole video to see all solutions, in order of how many people found them helpful
== This solution helped 7 people ==
**** Pre-built binary ****
Found http://themainframe.ca/2011/06/install-htop-on-mac-os-x/ that shows how
to do it. The steps are as follows:
$ curl -O http://themainframe.ca/wp-content/uploads/2011/06/htop.zip
$ unzip htop.zip
$ sudo mv htop /bin
$ rm htop.zip
This binary is already pre-built so you should use caution when using
executables such as this to make sure that they aren't malicious.
**** Building it from scratch ****
You can also follow these directions if you'd like to attempt to build the
executable yourself. The tutorial is called: http://jeetworks.org/node/60. A
copy of the original reference material is here on Tech_Chutney.
**** General steps ****
$ git clone git://github.com/AndyA/htop-osx.git
Building this under Snow Leopard requires you to checkout the 'osx' branch:
$ cd htop-osx
$ git checkout -b osx origin/osx
and set your 'CFLAGS' environmental variable to specify a 32-bit build:
$ export CFLAGS="-m32"
before the actual build:
$ ./autogen.sh
$ ./configure
$ make
$ make install
== This solution helped 101 people ==
Here is the laziest way (or homebrew way)
First install http://brew.sh if you haven't
Second brew install htop
Third, done