Code

tiforadacaixa

Curso de kivy - Aula 1: Instalação do kivy

Antes de instalar o kivy é importante que você instale o python3 !


Apos instalar o python3 atualize o pip via terminal ou cmd com esse comando
como administrador:

pip install --upgrade pip

apos isso execute os seguintes comandos para instalar o kivy:
pip install cython
pip install kivy

no windows:
  1. python -m pip install --upgrade pip wheel setuptools
    
  2. python -m pip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew
    python -m pip install kivy.deps.gstreamer
  3. python -m pip install kivy
    
  4. python -m pip install kivy.deps.angle

Outros exemplos nesse site: 
https://kivy.org/docs/installation/installation-linux.html

para verificar se o kivy esta funcionando cole o seguinte código em um arquivo
teste.py:


#importamos a classe App do kivy
from kivy.app import App
#importamos o widget label do kivy
from kivy.uix.label import Label

#definimos um metodo chamado build para ser executado ao executar o app
def build():
    return Label(text="hello world")

#criamos um novo app chamado hello_world
hello_world = App()
#definimos que o metodo build vai sobrescrever o metodo hello_world
hello_world.build = build
#executamos o app hello_world
hello_world.run()

Postar um comentário

2 Comentários

  1. Na linha 2 (onde temos "from kiv.app import App") está faltando um "y".
    O correto seria:"from kivy.app import App".
    De qualquer forma, obrigado pelo artigo. Me ajudou. Abs.

    ResponderExcluir