Skip to main content

How to install kivy on your operating system

Kivy latest versionis 2.0.0 officially supports python  versions 3.6 - 3.9

Now you can install kivy first of all you are notice the python is installed on your OS

Step 1: Open this link https://kivy.org/doc/stable/gettingstarted/installation.html

and select the OS install  make sure which is your operating system and than click links

Step 2: You can install kivy using pip  you simply type on your terminal/cmd : pip install kivy

Kivy install in Windowsimply type on your terminal/cmd   python -m pip install kivy

 Kviy install in linuxsimply type on your terminal python3 -m pip install kivy

Kivy install in OS Xsimply type on your terminal python -m pip install kivy

Kivy install in RPisimply type on your terminal/cmd   python -m pip install kivy

Kivy install in conda: conda install kivy -c conda-forge

If your kivy not install successfully than go to the kivy installation documentation link https://kivy.org/doc/stable/gettingstarted/installation.html

Thank you

Comments

Popular posts from this blog

Kivy App Run Method

 Create An App Now It is easy to create  simple kivy app  1.  Sub-Classing the App Class  2. Implemennting its build() function mathod so it returns a Widget instance the roon of app (the root of your app widget tree)  3. I nstantiating this class, and calling its  run()  method, run method is run the main app The sample of small app from kivy.app import App from kivy.uix.gridlayout import GridLayout from kivy.uix.label import Label from kivy.uix.textinput import TextInput class Loginscreen(GridLayout):     def __init__(self,**kwargs):          super(Loginscreen,self).__init__(**kwargs)          self.cols = 2          self.add_widget(Label(text="User Name"))          self.username = TextInput(multiline=False)          self.add_widget(self.username)          self.add_widget(Label(text="...