Created
April 22, 2012 21:22
-
-
Save ishworgurung/2467003 to your computer and use it in GitHub Desktop.
Installing pyev from source on MAC OS X 10.7
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
1. Install build tools | |
- sudo fink install autoconf2.6 automake1.11 | |
2. Checkout libev | |
- cvs -z3 -d :pserver:[email protected]/schmorpforge co libev | |
3. Generate configure script and a makefile | |
- cd libev | |
- autoreconf-2.68 --install --symlink --force > configure | |
- chmod +x configure && ./configure | |
4. Compile and install it | |
- make && sudo make install | |
5. Checkout pyev | |
- svn checkout http://pyev.googlecode.com/svn/trunk/ pyev-read-only | |
6. Build and install pyev | |
- cd pyev-read-only/ | |
- sudo python setup.py install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment