skip to Main Content

Why am I getting the Import error in python, when I have pip installed every single module required for my App – Telegram API

import kivy from kivy.app import App from kivy.uix.label import Label from kivy.uix.gridlayout import Gridlayout from kivy.uix.textinput import TextInput class MyGrid(GridLayout): def __init__(self, **kwargs): super(MyGrid, self).__init__(**kwargs) self.cols = 2 self.add_widget(Label(text="Name: ")) self.name = TextInput(multiline=False) self.add_widget(self.name) class MyApp(App): def build(self): return MyGrid()…

VIEW QUESTION
Back To Top
Search