I want to install a python package from source on android. Is this possible? I tried in the console to run the py install files, but distutils (.core, ccompiler) isn't being found. Is it possible to still install them?
Asked
Active
Viewed 3,210 times
7
-
http://stackoverflow.com/questions/101754/is-there-any-way-to-run-python-on-android – Esteban Küber Apr 29 '10 at 01:04
2 Answers
1
Android does not ship with a Python interpreter, nor does it ship with gcc
or other compilers. You will need to get an ARM binary from somewhere or cross-compile one yourself. (BTW, I'm assuming ARM, but substitute in whatever architecture you happen to be running).

CommonsWare
- 986,068
- 189
- 2,389
- 2,491