Skip to content

Instantly share code, notes, and snippets.

@NapoleonWils0n
Created November 11, 2012 19:31
Show Gist options
  • Save NapoleonWils0n/4055998 to your computer and use it in GitHub Desktop.
Save NapoleonWils0n/4055998 to your computer and use it in GitHub Desktop.
macosx: tor install from source
#!/bin/sh
# install tor from source for command line tools
# tor-resolve
# first download and install libevent - http://libevent.org/
cd libevent-2.0.19-stable/
./configure
make
sudo make install
#--------------------------------------------------------------------------------------#
# install tor - https://www.torproject.org
cd tor-0.2.2.37/
./configure
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment