0
Command line
Is command line and terminal same thing? if not: Can I get command line for Android? if I can: How can I get command line for Android?
2 Respuestas
+ 3
Taking the [python] keyword as the programming context...
Terminals contain command lines (sometimes people will say "at the command line" and mean "in a terminal")
Then, a command line could mean things like this:
~ What you type at a system prompt (inside a terminal window), like "python -m http.server"
~ The interactive mode prompt, like typing just "python" and receiving this ">>> " as a place to type commands.
Options (note: Hacker's Keyboard is nice to have):
~ Termux (it provides multiple terminals with command lines, and acts like Linux; you can install Python like a PC)
~ QPython or QPython3; Run a code, then press Ctrl-C to drop out to an in-app terminal
~ Terminal Emulator, Terminal IDE (Just a place to type commands; no direct Python relationship)
[Advanced] If you have root: Linux Deploy (probably ignore this though...really)
+ 2
WOW... i dint know Linux Deploy... Thank you very much ;)