Erro de instalação do Kivy no Ubuntu

1

Estou usando o Ubuntu 14.04 e estou tentando instalar o pacote kivy. O guia de instalação diz para fazer:

sudo apt-get install python-kivy

e mostra este erro:

The following packages have unmet dependencies:
 python-kivy : Depends: python-kivy-bin (= 1.9.2-0~daily0+201609211917-3732-pkg135~ubuntu14.04.1) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Quando tento fazer: sudo apt-get instala python-kivy python-kivy-bin Shows:

python-kivy-bin : Depends: libsdl2-2.0-0 (>= 2.0.0) but it is not going to be installed
                  Depends: libsdl2-image-2.0-0 (>= 2.0.0) but it is not going to be installed
                  Depends: libsdl2-mixer-2.0-0 (>= 2.0.0) but it is not going to be installed
                  Depends: libsdl2-ttf-2.0-0 (>= 2.0.0) but it is not going to be installed

Alguém sabe como posso resolver isso?

    
por Flavio D 08.02.2017 / 23:48

1 resposta

0

Siga as instruções abaixo

sudo apt-get install python-kivy

sudo apt-get install -f   # in case any issue 

sudo apt-get install python-kivy #fire again after clear dependanceis issues.

Ou

sudo apt-get install python-pip
sudo pip install kivy
sudo pip install kivy --upgrade

O mundo de Kivy é maravilhoso para o desenvolvimento de aplicativos da GUI.

    
por Tejaskumar Tank 11.03.2017 / 06:17