Created
May 26, 2012 16:28
-
-
Save dracos/2794525 to your computer and use it in GitHub Desktop.
Setting up tweet2voice on a Mac
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
# 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