blob: ea42e6f6e9efb8e6e6179d229aafc5f8c9e60d88 (
plain)
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
|
This is a python daemon providing websocket api to various web apps.
To install and run on Tizen:
zypper install remotecontrol
This will pull all the dependencies and you can then start the server by:
sudo start-remoteserver
On Ubuntu 12.04:
apt-get install python-twisted python-setuptools python-simplejson python-netifaces
In addition, you'll need to build and install AutobahnPython websocket library and also install the following python libraries, since they are not packaged for Ubuntu.
Install the AutobahnPython from source
git clone git://github.com/tavendo/AutobahnPython.git
cd AutobahnPython
git checkout v0.5.0
cd autobahn
sudo python setup.py install
Download and install the remote control server:
git clone git@github.com:otcshare/remotecontrol.git
cd remotecontrol
sudo python setup.py install
To start the server:
sudo start-remoteserver
|