Has anyone tried the IOS app Carnets.https://apps.apple.com/us/app/carnets/id1450994949. It provides a locally executing Python 3 Jupyter Notebook with many modules, including Pandas and can download other (Pure Python) modules. Did I mention it is free and open source? https://holzschu.github.io/Carnets_Jupyter/
Forum Archive
Carnets
I tried it.
In my first cell I had to download a file, using wget. Unfortunately it was not recognised as valid command.
@pavlinb in fairness, wget is not a python command, why would you expect it to work in a jupyter notebook on a non *nix system? (!wget tries to call out to the shell, which of course iOS does not have)
The python equivalent would be:
import urllib.request
url-variable = 'https://adress'
urllib.request.urlretrieve(url, filename-variable)
@JonB Good note, thank you.
I use both Carnets and Pyto, and love both of them.
But I am not an advanced user so they help me learn Jupiter Notebooks (Carnets)
And both can run Pandas, which is superb.
Pyto is updated regularly and runs 3.8 version of Python
I like this blog very much and i think that people should take part in this volunteer training and it will encourage more and more people for participating in it. This volunteer training is a great training and professional cv writers uk is also a best place that provides a platform for the people to write something in their own words. I have noticed that a lot of women have filled this fishing tournament form and it's a very good thing.
@JonB said:
@pavlinb in fairness, wget is not a python command, why would you expect it to work in a jupyter notebook on a non *nix system? (!wget tries to call out to the shell, which of course iOS does not have)
@pavlinb in fairness, wget is not a python command, why would you expect it to work in a jupyter notebook on a non *nix system? (!wget tries to call out to the shell, which of course iOS does not have)