Project

General

Profile

Install supporting packages Shared » History » Version 5

Anchi Cheng, 02/04/2015 10:19 PM

1 1 Anchi Cheng
h1. Install supporting packages
2
3
Using the Required Supporting Packages table below, install any missing prerequisite packages by following the instructions for your specific Linux distribution.
4
5
For example, SUSE users can use YaST to install them; RedHat and CentOS users can use @yum@, Debian and Ubuntu uses @apt-get@. 
6
7
We highly recommend using pre-built binary packages to install the programs. Installing from source can quickly become a nightmare! See also the previous page, [[appion:Instructions_for_installing_CentOS_on_your_computer]] for Red Hat based systems.
8
9
h3.  Required supporting packages:
10
11
|_.Name:|_.Download site:|_.yum package name|_.SuSE rpm name|
12 3 Amber Herold
|Python 2.6 or newer| "http://www.python.org":http://www.python.org|python|python-devel|
13 1 Anchi Cheng
|wxPython 2.5.2.8 or newer| "http://www.wxpython.org":http://www.wxpython.org|wxPython|python-wxGTK|
14
|MySQL Python client 1.2 or newer| "http://sourceforge.net/projects/mysql-python":http://sourceforge.net/projects/mysql-python|MySQL-python|python-mysql|
15
|Python Imaging Library (PIL) 1.1.4 or newer| "http://www.pythonware.com/products/pil/":http://www.pythonware.com/products/pil/|python-imaging|python-imaging|
16
|NumPy 1.0.1 or newer| "http://numpy.scipy.org/":http://numpy.scipy.org/|numpy|numpy|
17
|SciPy 0.5.1 (tested, others may work)*| "http://www.scipy.org":http://www.scipy.org|scipy|python-scipy|
18 4 Gabriel Lander
|joblib 0.8.3-r1 or newer| "https://pypi.python.org/pypi/joblib":https://pypi.python.org/pypi/joblib|python-joblib|python-joblib|
19 1 Anchi Cheng
20 5 Anchi Cheng
joblib can be installed with the command
21
22
<pre>
23
easy_install joblib
24
</pre>
25
26 1 Anchi Cheng
If you use Python 2.4 or earlier, you also need to install the "PyXML module":http://pyxml.sourceforge.net/topics/ .  For more recent versions of Python, it is already included in the main Python package.
27
28
For CentOS, see [[appion:Download additional Software]] page, if you have trouble finding these packages.
29
30
h3.  Scipy/Numpy
31
32 2 Anchi Cheng
h4. SUSE specific issues
33
34 1 Anchi Cheng
* SciPy may not build from source properly on some versions of SuSE due to an incompatible LAPACK package that comes with SuSE. You can get scipy as well as a compatible LAPACK etc. from http://repos.opensuse.org/science (need to specify your SuSE version and machine etc.)
35 2 Anchi Cheng
* See also https://bugzilla.redhat.com/show_bug.cgi?id=489887 regarding LD_LIBRARY_PATH restriction to LAPACK installation.
36 1 Anchi Cheng
37
You can test your numpy and scipy install with their build in test functions:
38
<pre>
39
python -c 'import numpy; numpy.test(level=1)'
40
python -c 'import scipy; scipy.test(level=1)'
41
</pre>
42
43
Numpy is more stable should be successful. Expect to see lots of errors with scipy.
44
45
h3.  Mac OS X 10.5+:
46
47
You can successfully install most of these packages on a Mac by downloading DMG files and clicking on the install programs. This is not for novice Mac user.  Be warned, wxpython problems on Mac will make your life difficult in using Leginon gui.  Don't make your mac the only processing server if it is Leginon that you will use mainly.
48
49
# First, start by downloading the @Mac OS X Installer Disk Image@ (v2.6 recommended) from http://python.org/download/ and install the newer version of python
50
# Download and install numpy and scipy DMG files from http://sourceforge.net/projects/numpy/files/ and http://sourceforge.net/projects/scipy/files/
51
# Download and install wxPython DMG file from http://www.wxpython.org/download.php
52
53
Other program need more work:
54
# The Python Imaging Library (PIL) has be compiled from source, which also requires the "Mac OS X Developer tools":http://developer.apple.com/technologies/tools/ to be installed.