pydroid

Using python and matplotlib on android

限于喜欢 提交于 2019-11-27 11:20:46
问题 Is there a way to set up python 2.7.x + matplotlib on an android tablet so that you can run simple standard python code? I would like to be able to run the same scripts I run on my Linux desktop. This is just for my own use and I don't need to distribute the code to anyone else. As a concrete example, is it possible to run this script? import numpy as np import matplotlib.pyplot as plt x = np.arange(0, 5, 0.1); y = np.sin(x) plt.plot(x, y) 回答1: Is it easy, no. Can it be done? Yes. I believe a