forked from uholzer/euler-proof-engine-debian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
60 lines (43 loc) · 2.41 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
---------
Unzip eye.zip from http://sourceforge.net/projects/eulersharp/files/eulersharp/
Install gmp library e.g. sudo apt install libgmp-dev
Install swipl kernel + package clib from http://www.swi-prolog.org/Download.html
Install curl from http://curl.haxx.se/download.html
Install cturtle from http://github.com/melgi/cturtle/releases/
Install carl from http://github.com/melgi/carl/releases/
Put the swipl, curl, cturtle and carl executables in the path environment variable.
Run the installation script install.sh which will
- copy the EYE source file eye.prolog to /opt/eye/src/eye.prolog
- create the EYE image file at /opt/eye/lib/eye.pvm
- copy the EYE launch script eye.sh to /opt/eye/bin/eye.sh
Test the EYE installation via /opt/eye/bin/eye.sh --version
and it should return the version which is in the file VERSION.
For Windows
-----------
Unzip eye.zip from http://sourceforge.net/projects/eulersharp/files/eulersharp/
Install swipl kernel + package clib from http://www.swi-prolog.org/Download.html
Install curl from http://curl.haxx.se/download.html
Install cturtle from http://github.com/melgi/cturtle/releases/
Install carl from http://github.com/melgi/carl/releases/
Put the swipl, curl, cturtle and carl executables in the path environment variable.
Run the installation script install.cmd which will
- copy the EYE source file eye.prolog to C:\Program Files\eye\src\eye.prolog
- 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
Test the EYE installation via "C:\Program Files\eye\bin\eye.cmd" --version
and it should return the version which is in the file VERSION.
For Mac
-------
Unzip eye.zip from http://sourceforge.net/projects/eulersharp/files/eulersharp/
Install swipl kernel + package clib from http://www.swi-prolog.org/Download.html
Install cturtle from http://github.com/melgi/cturtle/releases/
Install carl from http://github.com/melgi/carl/releases/
Put the swipl, cturtle and carl executables in the path environment variable.
Run the installation script install.sh which will
- copy the EYE source file eye.prolog to /opt/eye/src/eye.prolog
- create the EYE image file at /opt/eye/lib/eye.pvm
- copy the EYE launch script eye.sh to /opt/eye/bin/eye.sh
Test the EYE installation via /opt/eye/bin/eye.sh --version
and it should return the version which is in the file VERSION.