+ 1
Termux
Hello friends , after creat Python file here in sole how we run same file in termux ?
6 ответов
+ 8
Vipin Dhawan
No, Pydroid doesn't means Python 3. It's a name for an IDE.
My view:
It's available for android so,
Python3+Android=Pydroid3
+ 5
install python in termux
pkg install python
copy the code to termux environment, you can install text editor like vim then rewrite/paste.
pkg install vim
vim myscript.py
python myscript.py
or paste directly into file, using termux-clipboard-get from termux-api package
pkg install termux-api
termux-clipboard-get > myscript.py
python myscript.py
or use termux-storage, and put yourcode in default place like download folder
pkg install termux-storage
python ~/storage/downloads/myscript.py
+ 1
Thanks bro
+ 1
Pydorid3 means python 3
+ 1
💓💓
0
Ok dear got u