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
|
First install the required dependencies:
* Python3
* gir1.2-wnck-1.0
* libglib2-dev
* Python Imaging Library
* SciPy
then cd to the directory containing all of the development files and run:
aclocal
automake --add-missing
autoreconf
./configure --prefix=/usr
make
sudo make install
Installation on Ubuntu Mate on a Pi 2
This is a little more involved. First download gir1.2-wnck-1.0 for arm architechure from [here](http://launchpadlibrarian.net/160438738/gir1.2-wnck-1.0_2.30.7-0ubuntu4_armhf.deb) and install it with sudo dpkg -i. Then install other dependencies - sudo apt-get install git autoreconf libglib2.0-dev
From this point the instructions above for compiling from source should be followed.
|