How can I build and install kivy from source ?
Asked
Active
Viewed 1,419 times
1 Answers
0
Clone the repository with:
git clone http://github.com/kivy/kivy
cd kivy
It could be that you still need some extra packages. To install them, do:
sudo apt-get install cython
sudo apt-get install libgstreamer1.0-dev
sudo apt-get install libsdl2-dev
sudo apt-get install libsdl2-ttf-dev
sudo apt-get install libsdl2-image-dev
sudo apt-get install libsdl2-mixer-dev
For a standard build use:
make
Or for a build with MesaGL use:
make mesabuild
And install with:
sudo make install
But I suggest using checkinstall:
sudo apt-get install checkinstall
sudo checkinstall python setup.py install
A.B.
- 89,123
- 21
- 245
- 323
-
ok, where os the installation ? – Apr 14 '15 at 14:36
-
1@begueradj Were you satisfied with my answer? Then give me a upvote (∧). If I could solve your problem, then it would be nice if you'd mark my answer (✓). ;) – A.B. Apr 18 '15 at 14:51