mirror of
https://github.com/paulscherrerinstitute/ch.psi.imagej.hdf5.git
synced 2025-04-24 23:10:05 +02:00

git-svn-id: http://imagej-hdf.googlecode.com/svn/trunk@4 1917c786-bb84-a533-1332-c8e2925cefa8
34 lines
1.2 KiB
Plaintext
34 lines
1.2 KiB
Plaintext
####################################################################
|
|
# INSTALL NOTES #
|
|
####################################################################
|
|
- For linux 32bit:
|
|
Edit the "run" file in your ImageJ installation directory that it
|
|
looks like the following
|
|
./jre/bin/java -Djava.library.path=./lib/linux32
|
|
-Xmx512m -jar ij.jar
|
|
|
|
- For linux 64bit:
|
|
Edit the "run" file in your ImageJ installation directory that it
|
|
looks like the following
|
|
java -Djava.library.path=./lib/linux64
|
|
-Xmx512m -jar ij.jar
|
|
|
|
Note: You must have 64bit JRE installed!
|
|
|
|
- For windows 32bit:
|
|
Edit the "ImageJ.cfg" file in your ImageJ installation directory
|
|
that it looks like the following
|
|
C:\Programme\Java\jdk1.5.0_14\bin\javaw.exe
|
|
-Djava.library.path=lib\win32 -Xmx640m -cp ij.jar ij.ImageJ
|
|
|
|
- For Mac 32bit (tested on Snow Leopard):
|
|
Edit the "run" file in your ImageJ installation directory that it
|
|
looks like the following
|
|
java -Djava.library.path=./lib/mac32
|
|
-Xmx512m -jar ij.jar
|
|
|
|
Note: You must have 32bit JRE installed or force the JVM to use a
|
|
32bit data model (-d32)!
|
|
|
|
####################################################################
|