root/trunk/raw_html/install.html

Revision 90, 1.9 kB (checked in by KirkMcDonald, 2 years ago)

Updated install docs.

Line 
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <html>
3 <head>
4     <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
5     <link href="pyd.css" rel="stylesheet" type="text/css">
6     <title>Installing Pyd</title>
7 </head>
8
9 <body>
10 %(nav)s
11 <div id="content">
12 <h1>Installing Pyd</h1>
13
14 <h3>Requirements</h3>
15
16 <p>Pyd requires Python 2.4 or newer and the latest version of DMD (on Windows) or GDC (on Linux). At the time of this writing, those versions are DMD 1.00 and GDC 0.21.</p>
17
18 <p>Pyd is supported on Windows using the <a href="http://digitalmars.com/d/index.html">DMD</a> compiler and on Linux using <a href="http://dgcc.sourceforge.net/">GDC</a>. Support for Derek Parnell's <code>bud</code> is also planned.</p>
19
20 <p>Release Candidate 1 of Pyd is available on dsource:</p>
21 <ul>
22 <li><a href="http://dsource.org/projects/pyd/browser/downloads/celerid-RC1.zip?format=raw">celerid-RC1.zip</a> (395 KB)</li>
23 <li><a href="http://dsource.org/projects/pyd/browser/downloads/celerid-RC1.tar.bz2?format=raw">celerid-RC1.tar.bz2</a> (284 KB)</li>
24 </ul>
25
26 <p>Pyd's Subversion repository is located <a href="http://svn.dsource.org/projects/pyd/trunk">here</a>.</p>
27
28 <h3>Installation</h3>
29
30 <p>Pyd installs itself as a Python package called <a href="celerid.html"><code>celerid</code></a>. Once you have extracted the archive (or downloaded the "trunk" directory), simply run <code>python setup.py install</code>, and the <code>celerid</code> directory will be created in Python's site-packages directory.</p>
31
32 <p>CeleriD is an extension to distutils. It tells Python how to use the D compiler. By default, it uses the first version of the compiler that it can find on the system PATH. If the compiler is not on your PATH, or you wish to specify a specific version of it, you may set the DMD_BIN or GDC_BIN environment variable (for Windows and Linux, respectively) to point to the executable you wish to use.</p>
33 </div>
34
35 </body>
36 </html>
Note: See TracBrowser for help on using the browser.