Reputation: 1393
Is there any way to work with Python in iPad as I would on a PC? I will have quite some time with only my iPad and would like to continue with the same files.
I currently use Jupyter notebook and Sublime text, but I don't mind any other alternative that works on iPad.
I will be working on Python, Pandas, Django, Bokeh... just to give you an idea of what libraries I use.
Upvotes: 1
Views: 935
Reputation: 2268
You may be interested to try Juno Connect, it is a Jupyter Notebook client for iPad. It is a client though — so you will need a remote server running Jupyter to connect to.
Upvotes: 1
Reputation: 4053
Since you are using Jupyter Notebooks as your front end, you could use something like Microsoft Azure to act as your Jupyter server. The Python code runs on their cloud servers, so you don't need to have it installed locally. Alternatively, if you have a Linux box available to you on your network, you could run JupyterHub and connect to that via your iPad browser.
Upvotes: 2