mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=2203
This commit is contained in:
parent
4065e3637d
commit
d698f06f63
|
@ -1,10 +1,15 @@
|
||||||
;; $Id$
|
;; $Id$
|
||||||
|
|
||||||
To run the test scripts in test/ you need a Python extension module called
|
Various BOINC tools depend on a Python extension module called "MySQLdb". You
|
||||||
"MySQLdb". You can get the source here:
|
can get the source here:
|
||||||
|
|
||||||
http://sourceforge.net/projects/mysql-python
|
http://sourceforge.net/projects/mysql-python
|
||||||
|
|
||||||
|
WARNING: currently (2003/08/28) BOINC requires version 0.9.2 of
|
||||||
|
Python-MySQLdb, however this could be backported to 0.9.1 in the future as
|
||||||
|
many Linux distributions seem to have 0.9.1.
|
||||||
|
|
||||||
|
|
||||||
INSTALLATION INSTRUCTIONS
|
INSTALLATION INSTRUCTIONS
|
||||||
=========================
|
=========================
|
||||||
|
|
||||||
|
@ -32,6 +37,9 @@ Debian Linux: shared module
|
||||||
|
|
||||||
Red Hat Linux: shared module
|
Red Hat Linux: shared module
|
||||||
----------------------------
|
----------------------------
|
||||||
|
WARNING: The RPM on SourceForge is currently (2003/08/28) for Python 1.5
|
||||||
|
and will likely not work for your system; instead see below.
|
||||||
|
|
||||||
1. Download MySQL-python
|
1. Download MySQL-python
|
||||||
$ wget http://easynews.dl.sourceforge.net/sourceforge/mysql-python/MySQL-python-0.9.2-1.i386.rpm
|
$ wget http://easynews.dl.sourceforge.net/sourceforge/mysql-python/MySQL-python-0.9.2-1.i386.rpm
|
||||||
|
|
||||||
|
|
|
@ -17,20 +17,23 @@ Required to run automated tests, create a project and other various tools:
|
||||||
<ul>
|
<ul>
|
||||||
<li><b>Python</b> 2.2+
|
<li><b>Python</b> 2.2+
|
||||||
<ul>
|
<ul>
|
||||||
<li>Python module <a href=z><b>MySQLdb</b></a> (<a href=z>installation instructions</a>)
|
<li>Python module <a
|
||||||
<li>Python module <a href=z><b>xmlzzzz</b></a>
|
href=http://sourceforge.net/projects/mysql-python><b>MySQLdb</b></a>
|
||||||
|
0.9.2 (0.9.1 currently won't work; see <a href=install_python_mysqldb.txt>installation instructions</a>)
|
||||||
|
<li>Python module <a href=http://pyxml.sourceforge.net/><b>xml</b></a> (part of most distributions)
|
||||||
</ul>
|
</ul>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
Required on the <b>database</b> server:
|
Required on the <b>database</b> server:
|
||||||
<ul>
|
<ul>
|
||||||
<li><b>MySQL</b> 3.25+ or 4.0+: other SQL server can be ported.
|
<li><b>MySQL server</b> 3.25+ or 4.0+: other SQL server can be ported.
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
Required on the <b>master/scheduler</b> server(s):
|
Required on the <b>master/scheduler</b> server(s):
|
||||||
<ul>
|
<ul>
|
||||||
<li><b>Apache</b> or other webserver
|
<li><b>Apache</b> or other webserver
|
||||||
<li><b>PHP</b> 4.0
|
<li><b>PHP</b> 4.0
|
||||||
|
<li><b>MySQL client</b>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
Optional, required only if you change <code>*/Makefile.am</code>:
|
Optional, required only if you change <code>*/Makefile.am</code>:
|
||||||
|
@ -43,7 +46,7 @@ Optional, required only if you change <code>*/Makefile.am</code>:
|
||||||
<small>
|
<small>
|
||||||
On Debian Linux you can install all of the above software using
|
On Debian Linux you can install all of the above software using
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<code>apt-get install g++ python python-mysqldb python-xml mysql apache php automake autoconf</code>
|
<code>apt-get install g++ python python-mysqldb python-xml mysql-server mysql-client apache php automake autoconf</code>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</small>
|
</small>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue