Skip to content

Instantly share code, notes, and snippets.

@ishworgurung
Created April 22, 2012 21:22
Show Gist options
  • Save ishworgurung/2467003 to your computer and use it in GitHub Desktop.
Save ishworgurung/2467003 to your computer and use it in GitHub Desktop.
Installing pyev from source on MAC OS X 10.7
1. Install build tools
- sudo fink install autoconf2.6 automake1.11
2. Checkout libev
- cvs -z3 -d :pserver:anonymous@cvs.schmorp.de/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