Home > front end >  How to run .py file in termux
How to run .py file in termux

Time:08-04

I already installed python in termux and don't know how to run .py file

I typed python

It doesn't do anything. I already installed some packages. I am new to termux

WARP.py

download

python

CodePudding user response:

Did you save your Python script as main.py in the downloads at the first screenshot?

Then you may open the folder like you did in the second one of your screenshots and run the script with

python main.py
  • Related