'ModuleNotFoundError: No module named 'kivymd.uix.pickers'?
I'm XDoanh - A newbie in stackoverflow, I have a problem that need your answer:
The current versions of kivy and kivymd that I am using are the latest versions but when importing one of the classes from them i get an ERROR as title although the kivymd documentation says about that class and it seems to work fine... Has anyone encountered this error or has a solution? HELP ME :(
thanks in advance
Solution 1:[1]
I ran into this issue as well when exploring their kitchen sink demo.
I was able to fix this by editing the file libs/baseclass/pickers.py from from kivymd.uix.pickers import MDDatePicker, MDTimePicker
to from kivymd.uix.picker import MDDatePicker, MDTimePicker
and it worked after that.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Kade |