Created
January 11, 2012 21:03
-
-
Save schwanksta/1596749 to your computer and use it in GitHub Desktop.
Setting up python-elections from scratch
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
This should get you there: | |
easy_install virtualenv | |
easy_install pip | |
virtualenv --no-site-packages elections | |
cd elections | |
. bin/activate | |
mkdir project | |
cd project | |
pip install python-elections | |
touch main.py | |
<edit main.py and paste in the example code> | |
python main.py | |
voila! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment