Using Kivy
Install Kivy:
bashpip install kivyCreate a Basic App:
pythonfrom kivy.app import App from kivy.uix.label import Label class MyApp(App): def build(self): return Label(text='Hello, Kivy!') if __name__ == '__main__': MyApp().run()Run the App:
bashpython main.pyPackage for Mobile:
- For Android, use Buildozer:bash
pip install buildozer buildozer init buildozer -v android debug - For iOS, use Xcode along with Kivy-ios.
- For Android, use Buildozer:
Using BeeWare
Install BeeWare:
bashpip install beewareCreate a New Project:
bashbriefcase newRun the App:
bashcd myproject briefcase devPackage for Mobile:
- For Android:bash
briefcase create android briefcase build android briefcase run android - For iOS:bash
briefcase create ios briefcase build ios briefcase run ios
This is How you can create a Mobile App Using Python 🐍

.png)
0 Comments