-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathINSTALL_MAN.txt
More file actions
executable file
·76 lines (43 loc) · 1.84 KB
/
INSTALL_MAN.txt
File metadata and controls
executable file
·76 lines (43 loc) · 1.84 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
Manual installation instructions
********************************
If you can't build python-openzwave using other instruction you can
try to install it using this method.
Install the needed tools
========================
You must install git and other tools to get sources of python-
openzwave and openzwave. Look at the documentation of your Linux
distribution to do that.
On a debian like distribution :
sudo apt-get install git python-pip python-dev cython
You also need some python modules, on a debian like distribution :
sudo apt-get install python-dev python-setuptools python-louie
You need sphinx and make to generate the documentation.
TODO : installation for python 3
On a debian like distribution :
sudo apt-get install python-sphinx make
You also need to install some sphinx contributions :
sudo pip install sphinxcontrib-blockdiag sphinxcontrib-actdiag
sudo pip install sphinxcontrib-nwdiag sphinxcontrib-seqdiag
To compile the openzwave library, you need the common builds tools and
the libudev developments headers.
On a debian like distribution :
sudo apt-get install build-essential libudev-dev g++
Get sources of python-openzwave and open-zwave
==============================================
You are now ready to download sources of python-openzwave :
git clone git@github.com:bibi21000/python-openzwave.git
Go to the python-openzwave directory and grab the sources of openzwave
git clone git://github.com/OpenZWave/open-zwave.git openzwave
Build openzwave and python-openzwave
====================================
Go to the openzwave directory and build it :
cd openzwave/cpp/build/linux
make
cd ../../../..
Build python-openzwave
python setup-lib.py build
python setup-api.py build
And install them
================
sudo python setup-lib.py install
sudo python setup-api.py install