Project

General

Profile

Install EMAN » History » Version 5

Neil Voss, 05/12/2010 10:55 AM

1 1 Neil Voss
h1. Install EMAN
2
3 4 Neil Voss
EMAN1 is a fundamental package used in appion for general file conversion and image filtering.
4
5
h2. Download latest EMAN1 (not EMAN2) binaries (currently version 1.9):
6
7
# Go to the "EMAN webpage":http://blake.bcm.tmc.edu/eman/
8 5 Neil Voss
# Click on @(download)@ next to @EMAN1@
9
# Scroll to Download 1.9
10
# Click on @Download 1.9@ link
11
# Select the appropriate package
12
#* we recommend using the @cluster@ version of EMAN1
13
#* x86 for 32bit and x86_64 for 64bit machines
14
#* In this case, we would download the "eman-linux-x86_64-cluster-1.9.tar.gz"
15
# Go to download directory and unzip the tar file:
16
<pre>tar -zxvf eman-linux-x86_64-cluster-1.9.tar.gz</pre>
17
# Move the unzipped folder to a global location
18
<pre>sudo mv -v EMAN /usr/local/</pre>
19
# Run the EMAN installer 
20
<pre>
21
cd /usr/local/EMAN/
22
./eman-installer
23
</pre>
24
#For @BASH@, add eman.bashrc to global /etc/profile.d/ folder
25
<pre>
26
sudo cp -v /usr/local/EMAN/eman.bashrc /etc/profile.d/eman.sh
27
sudo chmod 755 /etc/profile.d/eman.sh
28
</pre>
29
#For @C@ shell, you'll have to create your own eman.csh:
30
#* Add the following lines an eman.csh file:
31
<pre>
32
setenv EMANDIR /usr/local/EMAN
33
setenv PATH ${EMANDIR}/bin:${PATH}
34
setenv LD_LIBRARY_PATH ${EMANDIR}/lib
35
setenv PYTHONPATH ${EMANDIR}/lib
36
</pre>
37
#*And then add it to the global /etc/profile.d/ folder
38
<pre>
39
sudo cp -v eman.csh /etc/profile.d/eman.csh
40
sudo chmod 755 /etc/profile.d/eman.csh
41
</pre>
42 1 Neil Voss
43 3 Neil Voss
______
44
45 2 Neil Voss
[[Install External Packages|< Install External Packages]] | [[Compile FindEM|Compile FindEM >]]
46 3 Neil Voss
47
______