-
Notifications
You must be signed in to change notification settings - Fork 17
/
INSTALL
60 lines (35 loc) · 1.51 KB
/
INSTALL
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
EYE install
For Linux, MacOS and other Unix look-alikes
-------------------------------------------
Unzip eye.zip from https://github.com/eyereasoner/eye/releases
Install SWI-Prolog from http://www.swi-prolog.org/Download.html
Test the SWI-Prolog installation via command line
swipl --version
and it should return the installed version number.
Run the installation script
install.sh [--prefix=Prefix]
The default prefix is /opt/eye. This will
- create the EYE image file at $prefix/lib/eye.pvm
- create the EYE launch script eye at $prefix/bin/eye
Test the EYE installation via command line
eye --version
and it should return the version which is in the file VERSION.
For example, to install in your home directory run
./install.sh --prefix=$HOME
For Windows
-----------
Unzip eye.zip from https://github.com/eyereasoner/eye/releases
Install SWI-Prolog from http://www.swi-prolog.org/Download.html
Test the SWI-Prolog installation via command line
swipl --version
and it should return the installed version number.
Run the installation script
install.cmd
which will
- copy the EYE source file eye.pl to C:\Program Files\eye\src\eye.pl
- create the EYE image file at C:\Program Files\eye\lib\eye.pvm
- copy the EYE launch script eye.cmd to C:\Program Files\eye\bin\eye.cmd
Put C:\Program Files\eye\bin in the path environment variable.
Test the EYE installation via command line
eye --version
and it should return the version which is in the file VERSION.