Installing FSL on Apple Mac

Thanks to Robert Coghill for sponsoring the Apple port.

Contents:


Prerequisites

Before you install FSL you should first ensure that you have the X11 windowing system installed. To do this, look for the X11 application in the Utilities folder within the Applications folder (switch to the Finder and hit Apple-Shift-U to open the Utilities folder); by default versions of Mac OS X prior to 10.5 doesn't normally come with this installed (you'll almost certainly need X11 later for things other than FSL anyway).

If you do not have X11 then install it from the OS X Install CD. Insert the CD, open it in the Finder, scroll down to the Optional Installs.mpkg package and double click to launch the installer (in Mac OS X 10.5, the package is in the Optional Installs folder). Click through until the custom install window appears, expose the Applications section and select X11. Now click on 'Install'

Open the Optional installs packageClick continue in the welcome screen
Click continue at the license agreementAgree to the license
Select your boot disk - usually 'MacIntosh HDSelect X11 from the list of applications to install

FSL Install Script

An automated installer, fsl_installer.sh is available to carry out the installation (or application of a patch). In addition it will install FSLView into /Applications, automatically configure your environment to enable you to run FSL and (on Mac OS X 10.4) will configure the Apple Terminal application to allow the launching of X11 applications from it. Finally, if you use Matlab it will configure your startup.m file to allow you to use the FSL Matlab functions.

Running the installer

Once you have downloaded the installer, open a Terminal (look in the Utilities folder in Applications), change to the folder containing the downloaded file (for example if you downloaded to your Desktop):

cd ~/Desktop

(On Mac OS X 10.5, Safari defaults to downloading files into ~/Downloads)

and run it with:

sh fsl_installer.sh

Assuming that this folder also contains the FSL distribution tar file and you wish to install into /usr/local then just press Return when the installer asks a question, to accept the defaults. Be aware that you may need Administrator priviledges to install into certain folders on your computer - /usr/local being an example, the installer will ask for your password if necessary to allow this.

For more information on controlling the installer, run it with the -h option.


Configuring your account for FSL usage using the install script

In addition to installing the FSL programs, the install script is also capable of configuring your user account to enable you to run the FSL programs. If your user account was used to run the installer when installing the FSL programs, this will have already been done, but you may also want to configure additional accounts. To do this, log in as the user wishing to run FSL and execute the installer with the -e option, eg:

sh fsl_installer.sh -e

Checking the installation

Test that the environment and command line tools are set up correctly by doing the following:

In general, to run the FSL tools from the command line (within a terminal) you need to enter the program name in lower case (e.g. bet). Typing a command on its own (without any arguments or options) gives you a help message for that command.

A more complete test of the FSL installation can be run at this point by using the testing and evaluation suite FEEDS.


Running the GUIs

Mac OS X 10.4

Once you have checked the environment and command line programs, as described above, then start X11 (click on it in the Utilities folder inside the Applications folder). All of the FSL GUIs should now work. To run a GUI version of a program you can either type its capitalised name with an additional '_gui' appended in the terminal (e.g. Bet_gui), or you can start the main FSL GUI by just typing fsl.

Mac OS X 10.5

There is no need to launch X11.app before starting any of the FSL GUIs, the X11 system automatically launches. To run a GUI version of a program you can either type its capitalised name with an additional '_gui' appended in the terminal (e.g. Bet_gui), or you can start the main FSL GUI by just typing fsl.

If you have upgraded from 10.4, then you may have a .bash_profile (or .tcshrc or .cshrc) that breaks this behaviour. If you installed using the fsl_installer.sh script then download the current version, fsl_installer.sh, and re-run using the -e option from a terminal:

cd ~/Downloads
sh fsl_installer.sh -e

assuming that your web browser downloads to the folder ~/Downloads. If you have manually added this to your shell setup file then look for a line that changes/sets the DISPLAY environment variable and remove it. New shells will then behave as expected.

Also note that at this time, Apple's X11.app as shipped, has a large number of bugs and performance issues. Until such time as an offical release corrects these problems, you may see significant improvements by installing the testing release available at http://www.x.org/wiki/XDarwin (follow the instructions for a Binary installation).


Using Matlab libraries

FSL ships with several Matlab scripts for loading Analyze files. These libraries are dependant on FSL environment variables which aren't set in the Mac OS X Desktop environment, so won't run in a Matlab session started from the /Applications/MATLAB.app launcher. There are two options:

  1. Run Matlab from a correctly configured Terminal (assuming Matlab 7.4 - adjust as appropriate for your version)
    /Applications/MATLAB74/bin/matlab
    or
  2. Configure the FSL environment variable in your ~/matlab/startup.m file (create it if it doesn't already exist) - add the following (assuming FSL installed in /usr/local):
    setenv( 'FSLDIR', '/usr/local/fsl');
    fsldir = getenv('FSLDIR');
    fsldirmpath = sprintf('%s/etc/matlab',fsldir);
    path(path, fsldirmpath);
    clear fsldir fsldirmpath;

Further help

If any problems occur when installing or running the FSL tools, please consult the FSL FAQ. This also contains instructions on how to join and use the FSL email list to ask specific questions which are not covered in the FAQ.


Manual Installation

  1. Verify the download
  2. Unpack the FSL distribution
  3. Install the applications
  4. Set up your user environment.

    If you are using the bash shell (the default)

    If you are using the tcsh or the csh shell