Skip to content

Commit

Permalink
Updated install docs.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.dsource.org/projects/pyd/trunk@90 1df65b71-e716-0410-9316-ac55df2b1602
  • Loading branch information
KirkMcDonald authored and KirkMcDonald committed Jan 15, 2007
1 parent 8ef0e26 commit a77b292
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
12 changes: 9 additions & 3 deletions html_doc/install.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,21 @@ <h1>Installing Pyd</h1>

<h3>Requirements</h3>

<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 0.177 and GDC 0.20.</p>
<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>

<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>

<p>Because Pyd is still in development, it is only available via Subversion. The repository is located <a href="http://svn.dsource.org/projects/pyd/trunk">here</a>.</p>
<p>Release Candidate 1 of Pyd is available on dsource:</p>
<ul>
<li><a href="http://dsource.org/projects/pyd/browser/downloads/celerid-RC1.zip?format=raw">celerid-RC1.zip</a> (395 KB)</li>
<li><a href="http://dsource.org/projects/pyd/browser/downloads/celerid-RC1.tar.bz2?format=raw">celerid-RC1.tar.bz2</a> (284 KB)</li>
</ul>

<p>Pyd's Subversion repository is located <a href="http://svn.dsource.org/projects/pyd/trunk">here</a>.</p>

<h3>Installation</h3>

<p>Pyd installs itself as a Python package called <a href="celerid.html"><code>celerid</code></a>. Once you have downloaded the "trunk" directory, simply run <code>python setup.py install</code> in that directory, and the <code>celerid</code> directory will be created in Python's site-packages directory.</p>
<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>

<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>
</div>
Expand Down
12 changes: 9 additions & 3 deletions raw_html/install.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,21 @@ <h1>Installing Pyd</h1>

<h3>Requirements</h3>

<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 0.177 and GDC 0.20.</p>
<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>

<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>

<p>Because Pyd is still in development, it is only available via Subversion. The repository is located <a href="http://svn.dsource.org/projects/pyd/trunk">here</a>.</p>
<p>Release Candidate 1 of Pyd is available on dsource:</p>
<ul>
<li><a href="http://dsource.org/projects/pyd/browser/downloads/celerid-RC1.zip?format=raw">celerid-RC1.zip</a> (395 KB)</li>
<li><a href="http://dsource.org/projects/pyd/browser/downloads/celerid-RC1.tar.bz2?format=raw">celerid-RC1.tar.bz2</a> (284 KB)</li>
</ul>

<p>Pyd's Subversion repository is located <a href="http://svn.dsource.org/projects/pyd/trunk">here</a>.</p>

<h3>Installation</h3>

<p>Pyd installs itself as a Python package called <a href="celerid.html"><code>celerid</code></a>. Once you have downloaded the "trunk" directory, simply run <code>python setup.py install</code> in that directory, and the <code>celerid</code> directory will be created in Python's site-packages directory.</p>
<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>

<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>
</div>
Expand Down

0 comments on commit a77b292

Please sign in to comment.