P
P
Ponteley2019-09-15 12:24:47
Python
Ponteley, 2019-09-15 12:24:47

How to write in kivy in Pycharm?

Tried to run python kivy code via Pycharm:

from kivy.app import App
from kivy.uix.button import Button

class MyApp(App):
    def build(self):
        return Button(text = "Это моя первая кнопка")

if __name__ == "__main__":
    MyApp().run()

But it gives this error:
[INFO   ] [Logger      ] Record log in C:\Users\Админ\.kivy\logs\kivy_19-09-15_27.txt
[INFO   ] [deps        ] Successfully imported "kivy_deps.angle" 0.1.9
[INFO   ] [deps        ] Successfully imported "kivy_deps.glew" 0.1.12
[INFO   ] [deps        ] Successfully imported "kivy_deps.sdl2" 0.1.22
[INFO   ] [Kivy        ] v1.11.1
[INFO   ] [Kivy        ] Installed at "C:\Program Files (x86)\Programs\Python37-32\lib\site-packages\kivy\__init__.py"
[INFO   ] [Python      ] v3.7.4 (tags/v3.7.4:e09359112e, Jul  8 2019, 19:29:22) [MSC v.1916 32 bit (Intel)]
[INFO   ] [Python      ] Interpreter at "C:\4\Scripts\python.exe"
[INFO   ] [Factory     ] 184 symbols loaded
[INFO   ] [Image       ] Providers: img_tex, img_dds, img_pil, img_gif (img_sdl2, img_ffpyplayer ignored)
[INFO   ] [Text        ] Provider: pil(['text_sdl2'] ignored)
[CRITICAL] [Window      ] Unable to find any valuable Window provider. Please enable debug logging (e.g. add -d if running from the command line, or change the log level in the config) and re-run your app to identify potential causes
sdl2 - ImportError: DLL load failed: %1 не является приложением Win32.
  File "C:\Program Files (x86)\Programs\Python37-32\lib\site-packages\kivy\core\__init__.py", line 63, in core_select_lib
    fromlist=[modulename], level=0)
  File "C:\Program Files (x86)\Programs\Python37-32\lib\site-packages\kivy\core\window\window_sdl2.py", line 27, in <module>
    from kivy.core.window._window_sdl2 import _WindowSDL2Storage

[CRITICAL] [App         ] Unable to get a Window, abort.

And everything is installed and the same code is run through the command line.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
0
0ralo, 2019-09-15
@0ralo

You didn’t install something, my kiwi works fine on paycharm. Try reinstalling kiwi and seaton

I
i_ikigai, 2020-11-05
@i_ikigai

I had an error due to python versions, those who have 3.8 are helped
by pip3 install --pre --extra-index-url https://kivy.org/downloads/simple kivy[base]

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question