Project

General

Profile

Install SPIDER » History » Version 8

Neil Voss, 05/13/2010 08:54 AM

1 1 Neil Voss
h1. Install SPIDER
2
3 7 Neil Voss
h2. Download SPIDER binary "from wadsworth.org":http://www.wadsworth.org/spider_doc/spider/docs/spi-register.html (250 MiB)
4 4 Neil Voss
5 7 Neil Voss
bq. Most of our SPIDER scripts were originally designed around SPIDER v14 and v15, but we are diligently working toward compatibility with SPIDER v18. That said you are probably best off using the newest version of SPIDER (v18.10 as of May 2010) and then reporting any bugs to us.
6 1 Neil Voss
7 7 Neil Voss
h2. Extract the archive
8
9
<pre>tar -zxvf spiderweb.18.10.tar.gz</pre>
10 1 Neil Voss
11 8 Neil Voss
12
h2. Set enivromental variables
13
14
h3. For @BASH@, create an eman.sh and add the following lines:
15
16
<pre>
17
export EMANDIR=/usr/local/EMAN
18
export PATH=${EMANDIR}/bin:${PATH}
19
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${EMANDIR}/lib
20
export PYTHONPATH=${EMANDIR}/lib
21
</pre>
22
23
h3. For @C@ shell, create an eman.csh and add the following lines:
24
25
<pre>
26
setenv EMANDIR /usr/local/EMAN
27
setenv PATH ${EMANDIR}/bin:${PATH}
28
setenv LD_LIBRARY_PATH ${EMANDIR}/lib
29
setenv PYTHONPATH ${EMANDIR}/lib
30
</pre>
31
32
h3. And then add it to the global /etc/profile.d/ folder
33
34
<pre>
35
sudo cp -v eman.sh /etc/profile.d/eman.sh
36
sudo chmod 755 /etc/profile.d/eman.sh
37
38
sudo cp -v eman.csh /etc/profile.d/eman.csh
39
sudo chmod 755 /etc/profile.d/eman.csh
40
</pre>
41
42
43 2 Neil Voss
[[Install EMAN|< Install EMAN]] | [[Install Xmipp|Install Xmipp >]]