Browse Source

Merge branch 'master' of github.com:buxx/intelligine

Bastien Sevajol 9 years ago
parent
commit
97ba8ea92f
1 changed files with 52 additions and 0 deletions
  1. 52 0
      INSTALL.md

+ 52 - 0
INSTALL.md View File

@@ -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
+````