|
@@ -0,0 +1,52 @@
|
|
1
|
+INSTALL
|
|
2
|
+=====================
|
|
3
|
+
|
|
4
|
+Windows
|
|
5
|
+--------------------
|
|
6
|
+
|
|
7
|
+(dirty tmp howto)
|
|
8
|
+
|
|
9
|
+Install python 3.4+: https://www.python.org/downloads/
|
|
10
|
+Install Git: http://git-scm.com/download/win
|
|
11
|
+
|
|
12
|
+Execute command
|
|
13
|
+````
|
|
14
|
+C:\Python34\python -m pip install pytmx
|
|
15
|
+````
|
|
16
|
+Install pygame for python3.4: Download pygame‑1.9.2a0‑cp34‑none‑win32.whl on http://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame
|
|
17
|
+
|
|
18
|
+Execute command
|
|
19
|
+````
|
|
20
|
+C:\Python34\python -m pip install "Downloads\pygame-1.9.2a0-cp34-none-win32.whl"
|
|
21
|
+````
|
|
22
|
+Launch Git Bash program and execute command
|
|
23
|
+````
|
|
24
|
+mkdir ant
|
|
25
|
+````
|
|
26
|
+
|
|
27
|
+Execute command
|
|
28
|
+````
|
|
29
|
+git clone https://github.com/buxx/synergine.git ant/synergine
|
|
30
|
+````
|
|
31
|
+
|
|
32
|
+Execute command
|
|
33
|
+````
|
|
34
|
+git clone https://github.com/buxx/intelligine.git ant/intelligine
|
|
35
|
+````
|
|
36
|
+
|
|
37
|
+Open Cmd and execute commands
|
|
38
|
+````
|
|
39
|
+cd ant\intelligine\modules
|
|
40
|
+del synergine
|
|
41
|
+del xyzworld
|
|
42
|
+del xyworld
|
|
43
|
+mklink /j synergine ..\..\synergine\synergine
|
|
44
|
+mklink /j xyzworld ..\..\synergine\modules\xyzworld
|
|
45
|
+mklink /j xyworld ..\..\synergine\modules\xyworld
|
|
46
|
+````
|
|
47
|
+
|
|
48
|
+Open new Cmd:
|
|
49
|
+````
|
|
50
|
+cd ant\intelligine
|
|
51
|
+C:\Python34\python run.py
|
|
52
|
+````
|