https://www.ctcms.nist.gov/oof/oof2/prerequisites.html
For Mac:
Two commonly used package managers on OS X are MacPorts and fink. Both should work. If you have neither installed already, it will be easier to use MacPorts.
Neither fink nor MacPorts will install the version of swig that OOF2 2.1.11 or earlier requires. See Installing SWIG, below, if you need it to install it. If you aren't building your own OOF2 extensions, and if you use --skip-swig when building OOF2, you don't need to install SWIG. If you're using OOF2 2.1.12 or later, you don't need to install SWIG.
To run OOF2, you will need to install X11, which Apple no longer supplies, but which can be downloaded from Mac OS Forge. It's slightly easier to get X11 from MacPorts, if you're using MacPorts.
When the instructions below tell you to type a command, type it in a Terminal window. You can copy and paste the lines from this page.
Macintosh OS X with MacPorts
-
Install MacPorts
from http://www.macports.org/install.php,
following their instructions. It's easiest to use the
.pkg installer. If you get error messages when running
"sudo port -v selfupdate", open a new Terminal window and
try again.
-
Type these commands. Some of them may take a while to
run, depending on whether or not your computer already has
some of the dependencies installed.
sudo port install pkgconfig sudo port install xorg-server sudo port install py27-numpy -atlas sudo port install py27-pygtk sudo port select python python27 sudo port install libgnomecanvas sudo port install google-perftools
Note: If you prefer to use Python 2.5 or Python 2.6 instead of Python 2.7, replace the '27's in the commands with '25's or '26's.
Note: The numpy line is there to tell MacPorts to install the version of numpy that doesn't use atlas. Atlas is a substitute for the blas libraries distributed with OS X, and takes a very very long time to install. If you either already have atlas installed or don't mind waiting for it to build, you can skip the py27-numpy installation step completely. In that case, the default, atlas-using, version of numpy will be installed automatically when you install py27-gtk.
-
The version of ImageMagick provide with older versions of
MacPorts on older versions of OS X was incompatible with
OOF2. You really should update your system, but if for
some reason you're using OS X 10.6 or earlier, do this:
-
Type these commands:
mkdir -p ~/ports/graphics/ImageMagick cp /opt/local/var/macports/sources/rsync.macports.org/release/tarballs/ports/graphics/ImageMagick/Portfile \ ~/ports/graphics/ImageMagick cd ~/ports sudo portindex
Note: If you're using MacPorts version earlier than 2.0.4, replace the path in the second line with/opt/local/var/macports/sources/rsync.macports.org/release/ports/graphics/ImageMagick/Portfile
-
Using any text editor (not a word processor!) edit
~/ports/graphics/ImageMagick/Portfile, appending these three lines:
variant no_openmp description {Disable OpenMP} { configure.args-append --disable-openmp }
-
Type this command:
sudo port install ImageMagick +no_openmp
-
Type these commands:
-
If you're using OS X 10.7 or later, type this commmand:
sudo port install ImageMagick
-
If you're using Python 2.6 or 2.7, and you get this message
when trying to build OOF2
Can't find pygtk-2.0! Version 2.6 or later required
then you need to work around a MacPorts bug by setting the PKG_CONFIG_PATH environment variable to /opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/pkgconfig before building. Replace the 2.7 with 2.6 if you're using python 2.6. For example, if you're using the bash shell, typeexport PKG_CONFIG_PATH=/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/pkgconfig
You can put the line in your .profile file in your home directory to make the change permanent, if you find yourself rebuilding OOF2 frequently for some reason.
Macintosh OS X with fink
We haven't used fink recently, so these instructions may be out of date. Please let us know if they are.- Install Xcode from Mac OS Forge.
-
Install fink, by going to
http://www.finkproject.org/download/srcdist.php
and following the instructions there. If the bootstrap
script asks you to choose a mode and you're on a 64-bit
capable Mac, choose 64bit-only.
If you already have fink installed in 32 bit mode, you don't need to reinstall everything just to change to 64 bit mode. You may need to force ImageMagick to build in 32 bit mode in step 5.
-
Enable the "unstable" fink packages.
(a) Run "sudo fink configure", and answer "y" when asked about the unstable tree.
(b) Run these commands:
sudo fink selfupdate sudo fink selfupdate-rsync sudo fink index -f sudo fink scanpackages
-
Use fink to install the libraries that ImageMagick will
require by typing these commands:
sudo fink install libjpeg sudo fink install lcms sudo fink install libpng14-shlibs
-
Build ImageMagick without OpenMP, which is incompatible with OOF2
on OS X. (NOTE! It may not be necessary to do this step.
We haven't tried building OOF2 with fink using a recent
version of either fink or OS X. You could try installing
ImageMagick with fink by typing sudo fink install
imagemagick7-dev and skipping this step. You'll know
if it worked if you can successfully load and display an
image in OOF2.)
-
Go
to http://www.imagemagick.org.
Click "Download". Choose a site to download it
from. Download the file with the latest version
number and the .bz2 suffix.
-
Uncompress and untar the package:
tar -xjf ImageMagick-<version>.tar.bz2
where <version> is 6.6.7-10 or something like that.
-
Run these commands:
cd ImageMagick-<version> ./configure LDFLAGS=-L/sw/lib CPPFLAGS=-I/sw/include --disable-openmp
-
Check the output from the configure command. If it
says that support for some image format that you
need hasn't been included, you probably need to go
back to step 4 and install more packages from fink.
The "Packages" link on the fink website will let you
search for the package name.
(If the output indicates no support for formats for which you are sure the libraries have been installed, and if it's possible that you have a 32 bit version of fink, try reconfiguring ImageMagick with CPPFLAGS="-I/sw/include -m32" (including the quotation marks!) instead of CPPFLAGS=-I/sw/include. The OOF developers haven't tested this. Please let us know if it works or not.)
-
Build and install ImageMagick by running these
commands:
make sudo make install
-
Go
to http://www.imagemagick.org.
Click "Download". Choose a site to download it
from. Download the file with the latest version
number and the .bz2 suffix.
-
Use fink to install the other packages that OOF2 requires by typing
these commands, some of which may take a while to run:
sudo fink install python sudo fink install pygtk2-gtk-py27-dev sudo fink install libgnomecanvas2-dev
Installing SWIG on OS X
NOTE: for OOF2 version 2.1.12 and later, it is no longer necessary to install swig.The only obstacle to installing swig 1.1 build 883 on a Mac is that the Mac's file system is not case sensitive, and swig's build procedure tries to make a subdirectory named SWIG and a file named swig in the same directory. You can install swig on a case-insensitive disk, you just can't build it there. There are at least three ways to get around this inconvenience:
- Build swig on a disk with a different type of file system. Format the disk with the Unix File System, using Apple's Disk Utility application.
- Use Disk Utility to create a disk image, formatted with the Unix File System. After you open the disk image, it will act just like a real disk, and you can use it to build swig.
-
Hack the swig source files so that it doesn't have
a case problem. If you don't mind a second hand
swig, you can download our modified version here:
NetBSD |
OOF2 version 2.0.5 and 2.1.1 or later will work on NetBSD.
OOF2 version 2.1.0 does not work. These commands were
sufficient to install OOF2 on a 32-bit version of NetBSD 5.1.
Execute them from a root account.
echo /usr/X11R7/lib >> /etc/ld.so.conf pkg_add pkg-config pkg_add py-gobject-shared pkg_add py26-gtk2 pkg_add libgnomecanvas pkg_add ImageMagick pkg_add freetype2 pkg_add fontconfigThe first line may not be necessary if you set LD_LIBRARY_PATH. Installing the prerequisites will provide a program called "python2.6" in /usr/pkg/bin. You can use this to build oof2, but you'll have to invoke it explicitly: python2.6 setup.py build --skip-swig --library-dirs=/usr/pkg/lib installYou could also create an alias or symbolic link called "python" that points to /usr/pkg/bin/python2.6, and then you can follow the instructions in README.md without change. |
No comments:
Post a Comment