Skip to content

Instantly share code, notes, and snippets.

@dracos
Created May 26, 2012 16:28
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 dracos/2794525 to your computer and use it in GitHub Desktop.
Save dracos/2794525 to your computer and use it in GitHub Desktop.
Setting up tweet2voice on a Mac
# Open a Terminal window, and then one by one type the things after the $ signs below, wait for a new prompt before the next command.
$ sudo easy_install virtualenv
# Will print out some stuff, hopefully nothing that looks like an error
$ virtualenv tweet2voice
# Will print out some more stuff
$ cd tweet2voice
$ source bin/activate
# The bit before the $ will now change a bit.
$ git clone git://github.com/dracos/tweet2voice.git
# Again, some more stuff about what's going on
$ cd tweet2voice
$ pip install -r requirements.txt
# Installing stuff
$ cp config.py-example config.py
# Now, open up config.py from TextEdit or other text editing program and put your Twitter username and password in the obvious places between the quote marks.
$ python -u tweet2voice.py matlock
# Should print one debugging line, then look like it's doing nothing until the username above says something.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment