Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python Interpreter on Android

Tags:

python

android

So I want to practice python on my Android. Is there a way I can get the interpreter or an interpreter emulator on my device?

like image 295
turnt Avatar asked Dec 09 '12 23:12

turnt


2 Answers

There's also Python for Android (Py4A), which is intended to work with SL4A. The documentation for Py4A is not as extensive as SL4A, but there are a few examples for Py4A available here.

In addition, there's Kivy, a crossplatform Python-based development framework for Android, PC, Linux, and iOS. I've played around with Kivy a little bit in the past, and while it's very powerful, it's documentation has been lacking, and the code is difficult to decipher.

like image 135
brentlance Avatar answered Sep 24 '22 22:09

brentlance


You can use the termux app, link to homepage, which is available in the google market and requires no root. It is a terminal emulator with a full Linux environment and via apt install python you can install python. apt list gives you a list of all available packages.

like image 41
Alf Avatar answered Sep 25 '22 22:09

Alf