Created
November 11, 2012 19:31
-
-
Save NapoleonWils0n/4055998 to your computer and use it in GitHub Desktop.
macosx: tor install from source
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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