-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
33 lines (27 loc) · 1.2 KB
/
Copy pathREADME
File metadata and controls
33 lines (27 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
####################################################################
# 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)!
####################################################################