Skip to content

Latest commit

 

History

History
executable file
·
84 lines (47 loc) · 1.83 KB

File metadata and controls

executable file
·
84 lines (47 loc) · 1.83 KB
orphan:

Installing python-openzwave from archive

This is the simplest (and the fastest) way to install python-openzwave. It cames with openzwave source files and is already cythonized.

This is surely the best soltion to install python-openzwave on a raspberry pi.

Get archive of python-openzwave

You are now ready to download sources of python-openzwave here :

http://bibi21000.no-ip.biz/python-openzwave/

This archive contains sources of python-openzwave and openzwave.

tar xvzf python-openzwave-X.Y.Z.tar.gz

This command will extract all the needed sources. And change to the right directory.

cd python-openzwave-X.Y.Z

Install the needed tools

You must install git and other tools to get sources of python-openzwave and openzwave and build them. Look at the documentation of your Linux distribution to do that.

On a debian like distribution :

sudo make deps

Build process

Now, you can compile sources :

make build

If you have already built python-openzwave or the build failed you can use the clean option :

sudo make clean
make build

Do not use root to build python-openzwave as it will surely fails. Please use a "normal user".

Installation

You can now install the packages using the following command will.

sudo make install

The installation script create a list of installed files. So you can remove python-openzwave using the following command :

sudo make uninstall

If it fails

Simply remove the python-openzwave-x.y.z directory and extract it again.