Unable to get a window, abort

In cmd go to python34 and then to Scripts and install the following: pip install –upgrade pip wheel setuptools pip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew pip install kivy.deps.gstreamer pip install kivy.deps.angle pip install kivy

Changing the background color of a Button in Kivy

It’s been a while since this was first posted so maybe with updates they came up with a better solution: Button: background_normal: ” background_color: 1, .3, .4, .85 Since the Button has a default grey, adding background color will only tint the button. By setting background_normal to ” that resets the default to white. From … Read more

What Kivy Tutorials Are Available [closed]

As others suggested, the examples in the kivy_installation directory are there to help programmers understand how basic tasks can be done using kivy. There is also this snippet wiki where we encourage people to put there snippets in the user snippets section. You could also look at the your first widget section in the programming … Read more

Pyinstaller adding data files

As others (@Anson Chan, @schlimmchen) have said: If you want to add some extra files, you should use Adding Data Files. Two ways to implement Command Line: add parameter to –add-data Spec file: add parameter to datas= Generated when running pyinstaller the first time. Then later you can edit your *.spec file. Then running pyinstaller … Read more

Kivy: How to change window size?

There’re currently two ways: Before the window is created: import kivy kivy.require(‘1.9.0’) from kivy.config import Config Config.set(‘graphics’, ‘width’, ‘200’) Config.set(‘graphics’, ‘height’, ‘200’) Dynamically after the Window was created: from kivy.core.window import Window Window.size = (300, 100)

Kivy for Android apps [closed]

I’ve been using and contributing to kivy for some time, and using it for a big application intended for market. Although still not as complete as native developpment (not sure if using the map Android API is possible at all, but there are alternatives), it works very well, with good performance. The kv language for … Read more