1 Building wxPython on Mac OS X
2 -----------------------------
5 These are the steps I have used for building wxPython on Mac OS X 10.x
6 with the Apple Developer Tools, a.k.a the Darwin version. I assume
7 that you know your way around a command line and that you know how to
8 get things from various CVS repositories as needed.
11 1. "MacPython-OSX" 2.3 is required. If you don't have it already there is a disk image with an
14 http://homepages.cwi.nl/~jack/macpython/download.html
16 If, for some reason you need to build your own Python, get the
17 source from www.python.org and follow the instructions in the
18 Mac/OSX/README file to build and install the Python.framework and
21 One last thing, make sure that /usr/local/bin is in your PATH
22 environment variable since that is where the new python and pythonw
23 commands will be located.
26 2. In a wxWindows CVS tree make a build directory. (You can also use
27 a CVS snapshot located in http://wxwindows.org/snapshots/ or the
28 released wxPythonSrc-*.tr.gz archive.)
30 cd ~/proj/wxWindows # or wherever you put it
33 3. Run configure from that build directory.
36 ../configure --with-mac
40 --with-libjpeg=builtin \
41 --with-libpng=builtin \
42 --with-libtiff=builtin \
44 If you want to add code that activates various runtime checks and
45 assertion exceptions then add --enable-debug_flag.
47 4. Make and install wxMac.
52 5. Build and install wxPython.
55 python setup.py build install
57 If you would like to install to someplace besides the Python
58 site-packages directory (such as to your home directory) then you
59 can add "--root=<path>" after the "install" command. To use
60 wxPython like this you'll need to ensure that the directory
61 containing wxPyrthon is contained in in the PYTHONPATH environment
64 6. Test. Just navigate in the Finder to the demo directory and double
65 click demo.py, or simple.py, or whatever you want to run. Or from
66 a command line you can run it this way:
71 7. Figure out what's wrong, figure out how to fix it, and then send
72 the patches to me. <wink>