Size: 1090
Comment:
|
Size: 2193
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 3: | Line 3: |
This guide is intended for novice users who are new to the UNIX shell environment. | This guide is intended for users who are new to the UNIX shell environment. |
Line 11: | Line 11: |
The "bash" shell is the default on Mac OS X, so we will add the EMAN2's init script to bash's ".profile" file in your home directory. Add this line to your ".profile" file. | EMAN2 needs to be added to some shell environment variables (PATH, PYTHONPATH, etc.) to run. The "bash" shell is the default on Mac OS X, so we will add EMAN2's init script to bash's ".profile" file in your home directory. Add this line to your ".profile" file. |
Line 13: | Line 13: |
{{{test -r /Applications/EMAN2/init.EMAN2.cvs.sh && source /Applications/EMAN2/init.EMAN2.cvs.sh}}} | {{{test -r /Applications/EMAN2/eman2.bashrc && source /Applications/EMAN2/eman2.bashrc}}} |
Line 19: | Line 19: |
This will create the file if it doesn't exit, and open it in your default text editor. Add the EMAN2 init line and save the file. | This will create the file if it doesn't exist, and open it in your default text editor. Add the EMAN2 init line and save the file. |
Line 25: | Line 25: |
This only needs to be done once. If you download a newer version of EMAN2, you can skip this step. Also, if you run an alternative shell, such as tcsh, see notes below. | |
Line 27: | Line 28: |
Restart your terminal program for a fresh shell. EMAN2 should now be installed and function properly. |
|
Line 33: | Line 36: |
= Notes = == If you get a 'Bad Interpreter' error == It is probably due to Mountain Lion's new quarantining process. You can try this: {{{ xattr -dr com.apple.quarantine /Applications/EMAN2 }}} == Installing EMAN2 in my home directory == If you do not have Administrator privileges on your system or want to install EMAN2 in your home directory, you will want to modify the eman2.bashrc file to reflect the correct path to EMAN2 in the EMAN2DIR variable, e.g.: {{{ export EMAN2DIR=/Users/irees/EMAN2 }}} == Other shells == If you run tcsh as your shell, the shell init file is "~/.cshrc", and the EMAN2 init script is eman2.cshrc: {{{ test -r /Applications/EMAN2/eman2.cshrc && source /Applications/EMAN2/eman2.cshrc }}} |
EMAN2 Mac OS X Visual Install Guide
This guide is intended for users who are new to the UNIX shell environment.
1. Copy the "EMAN2" folder to Applications
2. Configure shell environment
EMAN2 needs to be added to some shell environment variables (PATH, PYTHONPATH, etc.) to run. The "bash" shell is the default on Mac OS X, so we will add EMAN2's init script to bash's ".profile" file in your home directory. Add this line to your ".profile" file.
test -r /Applications/EMAN2/eman2.bashrc && source /Applications/EMAN2/eman2.bashrc
One easy way to open your ".profile" file for editing is with the following command:
touch ~/.profile; open -e ~/.profile
This will create the file if it doesn't exist, and open it in your default text editor. Add the EMAN2 init line and save the file.
This only needs to be done once. If you download a newer version of EMAN2, you can skip this step. Also, if you run an alternative shell, such as tcsh, see notes below.
3. Run EMAN2
Restart your terminal program for a fresh shell. EMAN2 should now be installed and function properly.
You can check that your EMAN2 installation is working by running "e2.py"
To run EMAN2's workflow interface, "cd" to a data directory and run "e2workflow.py"
Notes
If you get a 'Bad Interpreter' error
It is probably due to Mountain Lion's new quarantining process. You can try this:
xattr -dr com.apple.quarantine /Applications/EMAN2
Installing EMAN2 in my home directory
If you do not have Administrator privileges on your system or want to install EMAN2 in your home directory, you will want to modify the eman2.bashrc file to reflect the correct path to EMAN2 in the EMAN2DIR variable, e.g.:
export EMAN2DIR=/Users/irees/EMAN2
Other shells
If you run tcsh as your shell, the shell init file is "~/.cshrc", and the EMAN2 init script is eman2.cshrc:
test -r /Applications/EMAN2/eman2.cshrc && source /Applications/EMAN2/eman2.cshrc