Project

General

Profile

Install Appion Packages » History » Version 32

Anchi Cheng, 06/03/2013 10:00 AM

1 28 Anchi Cheng
h1. Install Appion Packages
2
3 32 Anchi Cheng
h2. Install the appion python package
4 28 Anchi Cheng
5 30 Amber Herold
Since the appion package includes many executable scripts, it is important that you know where they are being installed.  To prevent cluttering up the /usr/bin directory, you can specify an alternative path, typically /usr/local/bin, or a directory of your choice that you will later add to your PATH environment variable.  Install appion like this:
6 28 Anchi Cheng
<pre>
7 30 Amber Herold
cd /path/to/myami-VERSION/appion
8 31 Anchi Cheng
sudo python setup.py install --install-scripts=/usr/local/bin/appion
9 28 Anchi Cheng
</pre>
10
11 32 Anchi Cheng
h2. Install all the myami python packages _except appion_ using the following script:
12 1 Amber Herold
13
{{include(appion:Install Appion Packages Shared)}}
14 32 Anchi Cheng
15
h2. Set additional appion environment variables
16 28 Anchi Cheng
17
Finally, you will need to set the the MATLABPATH environment variable in order to get the Appion utilities that use Matlab to work.
18
For bash:
19
<pre>
20
export MATLABPATH=$MATLABPATH:<your_appion_directory>/ace
21
</pre>
22
or C shell
23
<pre>
24
setenv MATLABPATH $MATLABPATH:<your_appion_directory>/ace
25
</pre>
26 2 Amber Herold
27
______
28
29 3 Amber Herold
[[Perform system check|< Perform system check]] | [[Configure leginon.cfg|Configure leginon.cfg >]]
30
31 1 Amber Herold
______