-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDEPENDENCIES
64 lines (47 loc) · 1.36 KB
/
DEPENDENCIES
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
61
62
63
<<Non-Windows OS>>
Python 2.7
# it's not known if it'll work on 2.6-
apt-get install python
PIP
# requires python
apt-get install python-pip
Google Protobuf for python
# requires PIP
pip install protobuf
Shapely
# requires PIP and libgeos
pip install shapely
libgeos
# not sure of the command bellow
apt-get install libgeos-c
# under fedora, the packages are labled as following: the -devel package is needed by shapely
rpm install geos geos-devel
PyQt4 (optional)
# windows users are advised to get the binaries from Riverbank, as pip install of pyqt is bugged as of now.
# mac os users should install it via ports or homebrew
pip install PyQt
pygame (optional)
# pygame 1.9.2 is recommended, it's not much easy to install
# this is only needed for using a joystick
<<Windows OS>>
Python 2.7
www.python.org/download
PIP
http://www.lfd.uci.edu/~gohlke/pythonlibs/#pip
Protobuf
# download latest version for win32
https://code.google.com/p/protobuf/downloads/list
Shapely
pip install shapely
PyQt4
http://www.lfd.uci.edu/~gohlke/pythonlibs/#pyqt
pygame
http://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame
pyUSB
pip install pyusb
pyYAML
pip install pyyaml
#TODO:
create smart dependencies file so one can
run `python setup.py install-dependencies`
or similar.