Home > Back-end >  How to use python module in termux
How to use python module in termux

Time:12-29

How can I install python module in our android linux environment Termux. If you anyone have Idea about this topic let me know

I think I can solve my problem from here

CodePudding user response:

you can try pkg install python to install python then verify with python --version. If you want a specific python version use pkg search python and verify if your desired version is available. then pkg install python3.9 by example, to install python3.9.

With python installed you can install your modules or packages using pip like this: pip install your_module_name.

CodePudding user response:

USE THIS COMMAND:

pkg install python
pkg install python2
pkg install python3

  • Related