]> git.saurik.com Git - wxWidgets.git/blame - wxPython/docs/INSTALL.html
Docstrings for the sizers
[wxWidgets.git] / wxPython / docs / INSTALL.html
CommitLineData
8eda5e35
RD
1<?xml version="1.0" encoding="iso-8859-1" ?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4<head>
5<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
6<meta name="generator" content="Docutils 0.3.1: http://docutils.sourceforge.net/" />
7<title>Installing wxPython 2.5 from Source</title>
8<link rel="stylesheet" href="default.css" type="text/css" />
9</head>
10<body>
11<div class="document" id="installing-wxpython-2-5-from-source">
12<h1 class="title">Installing wxPython 2.5 from Source</h1>
13<p>This document will describe the few differences and additions to the
2e957aae
RD
14content in the <a class="reference" href="BUILD.html">BUILD</a> document for installing wxPython built from
15source. Please follow the intstructions both in this file and in
16<a class="reference" href="BUILD.html">BUILD</a> to perform this task. Where there is overlap the items
17described here will take precedence for doing installations.</p>
8eda5e35
RD
18<div class="section" id="installing-on-unix-like-systems-not-os-x">
19<h1><a name="installing-on-unix-like-systems-not-os-x">Installing on Unix-like Systems (not OS X)</a></h1>
20<ol class="arabic">
fc33e5e1 21<li><p class="first">When building wxWidgets you need to decide if you want it to be a
8eda5e35
RD
22private copy only accessed by wxPython, or if you would like it to
23be installed in a stanard location such as /usr. Or perhaps you
fc33e5e1 24already have a version of wxWidgets installed on your system (such
8eda5e35
RD
25as from an RPM) and you want wxPython to use that version too. If
26so then you'll want to ensure that the flags and options used to
27build the installed version are compatible with wxPython.</p>
28</li>
fc33e5e1 29<li><p class="first">If you do decide to build and install your own wxWidgets then there
8eda5e35
RD
30are a few tweaks to the configure flags described in BUILD.txt that
31you will probably want to make. Instead of --enable-debug use
32this configure flag:</p>
33<pre class="literal-block">
34--enable-optimize \
35</pre>
fc33e5e1 36<p>Normally I also use the following flag in order to have wxWidgets
8eda5e35
RD
37runtime assertions turned into Python exceptions where possible.
38It does add extra code to the build but probably not enough to
39worry about it. However if you want to get as lean a build as
40possible you can leave it out, but if your code does something bad
2e957aae
RD
41then instead of exceptions you'll likely get a crash:</p>
42<pre class="literal-block">
43--enable-debug_flag \
44</pre>
fc33e5e1 45<p>If you are building a private copy of wxWidgets (IOW, not installed
8eda5e35
RD
46in a standard library location) then it can be kind of a hassle to
47always have to set the LD_LIBRARY_PATH variable so wxPython can
fc33e5e1 48find the wxWidgets shared libraries. You can hard code the library
8eda5e35 49path into the binaries by using the rpath option when configuring
fc33e5e1 50wxWidgets. For example:</p>
8eda5e35
RD
51<pre class="literal-block">
52--enable-rpath=/opt/wx/2.5/lib \
53</pre>
54<p>SOLARIS NOTE: The --enable-rpath option may cause problems when
55using wxGTK on Solaris when compiling wxPython as described below.
56The woraround is to not use --enable-rpath flag for configure, but
57in that case all wxPython applications <em>must</em> have the
58LD_LIBRARY_PATH set to include $WXPREF/lib, or you can use the
59'crle' program to modify the runtime linking environment. If this
60is the only installation of wxGTK on the system then you can use a
61system library path for prefix and not have to worry about it at
62all.</p>
63</li>
64<li><p class="first">Build and install wxGTK as described in BUILD.txt.</p>
65</li>
66<li><p class="first">In addition to building wxPython as described in BUILD.txt, you can
67install it to Python's site-packages dir, as well as some scripts
68into the same bin dir used by Python by using this command:</p>
69<pre class="literal-block">
70python2.3 setup.py install
71</pre>
72<p>If you would like to install to some place besides the prefix where
73Python is installed, (such as to your home directory) then you can
74add &quot;--root=&lt;path&gt;&quot; after the &quot;install&quot; command. This will use
75&lt;path&gt; as the prefix and will install scripts to a bin subdir and
76the wxPython packages to a lib subdir. To use wxPython like this
77you'll need to ensure that the directory containing wxPython is
78contained in the PYTHONPATH environment variable.</p>
79</li>
80</ol>
81</div>
82<div class="section" id="installing-on-os-x">
83<h1><a name="installing-on-os-x">Installing on OS X</a></h1>
84<p>Installing wxPython on OS X is nearly the same as the Unix
85instructions above, except for a few small, but important details:</p>
86<ol class="arabic simple">
87<li>The --enable-rpath configure option is not needed since the path to
fc33e5e1 88the wxWidgets dylibs will automatically be encoded into the
8eda5e35 89extension modules when they are built. If you end up moving the
fc33e5e1 90wxWidgets dynlibs to some other location (such as inside the .app
8eda5e35
RD
91bundle of your applicaiton for distribution to other users,) then
92you will need to set DYLD_LIBRARY_PATH to this location so the
93dylibs can be found at runtime.</li>
94<li>Depending on the version of OS X Python may be installed in
95different locations. On 10.2 (Jaguar) you need to download and
96install MacPython-OSX-2.3 from <a class="reference" href="http://www.python.org/">http://www.python.org/</a> and the
97Python Framework will then be installed in /Library/Frameworks. On
9810.3 (Panther) Apple supplies the Python Framework as part of the
99OS install, but it will be located in /System/Library/Frameworks
100instead. However, on Panther the site-pacakges dir is sym-linked
101to /Library/Python/2.3 so the wxPython pacakges will end up there,
102although they will still be visible from site-packages. If you are
103building distributions of wxPython to be installed on other
104machines be careful to install to /Library/Python/2.3. To
105complicate things further, the Jaguar version, or a custom build
106you do yourself will end up in /Library/Frameworks even on
107Panther...</li>
108<li>You need to use pythonw at the command line or PythonLauncher app
109to run wxPython apps, otherwise the app will not be able to fully
110use the GUI display.</li>
111</ol>
112</div>
113<div class="section" id="installing-on-windows">
114<h1><a name="installing-on-windows">Installing on Windows</a></h1>
115<ol class="arabic">
fc33e5e1 116<li><p class="first">Build wxWidgets and wxPython as described in BUILD.txt. If you
8eda5e35
RD
117would rather have a version without the code that turns runtime
118assertions into Python exceptions, then use &quot;release&quot; instead of
fc33e5e1 119&quot;hybrid&quot; when building wxWidgets and add &quot;FINAL=1&quot; to the setup.py
8eda5e35
RD
120command line.</p>
121</li>
122<li><p class="first">Install wxPython like this:</p>
123<pre class="literal-block">
124python setup.py install
125</pre>
126</li>
fc33e5e1 127<li><p class="first">Copy the wxWidgets DLLs to the wx package directory so they can be
8eda5e35
RD
128found at runtime by the extension modules without requiring that
129they be installed on the PATH:</p>
130<pre class="literal-block">
90805926 131copy %WXWIN%\lib\vc_dll\wx*h_*.dll c:\Python23\Lib\site-pacakges\wx
8eda5e35
RD
132</pre>
133</li>
134</ol>
135</div>
136</div>
8eda5e35
RD
137</body>
138</html>