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:
python -m pip install --upgrade pip wheel setuptools
python -m pip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew python -m pip install kivy.deps.gstreamer
python -m pip install kivy
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:
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()
2 Comentários
Na linha 2 (onde temos "from kiv.app import App") está faltando um "y".
ResponderExcluirO correto seria:"from kivy.app import App".
De qualquer forma, obrigado pelo artigo. Me ajudou. Abs.
corrigido obrigado
Excluir