Answer the question
In order to leave comments, you need to log in
Python 3.7.5 does not find module, Kiwi framework. What is the problem?
Good day! Recently, I decided to learn the Kiwi library, I even had to downgrade python to 3.7.5.
I ran into a small problem and would be glad if you can help me. The problem lies in the kiwi library modules that python can't detect. From off. site kiwi, I updated and installed all the necessary elements to use kiwi. When you enter a small code that should display an empty window,
from kivy.app import App
class TutorialApp(App):
def build(self):
return
TutorialApp().run()
Traceback (most recent call last):
File "C:\Python\Все коды Python\kivy.py", line 1, in <module>
from kivy.app import App
File "C:\Python\Все коды Python\kivy.py", line 1, in <module>
from kivy.app import App
ModuleNotFoundError: No module named 'kivy.app'; 'kivy' is not a package
Answer the question
In order to leave comments, you need to log in
You cannot name a script the same as a module imported from it.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question