How to add pyhon modules?

Hi,

The question is there. In Linux I can add modules with pip command. Is there any way to make this in CE. To start with it I’d like to add requets module.

Thanks in advanced.

CE follows the JEOS approach, so Python is not included by default.
But you can easily add Python language support via Entware:

I’m running my Discord bot in Python on KII Pro.
I don’t know which python version are you going to install but for python3:
opkg update ; opkg install python3 python3-pip

Then install the package you want:
pip3 install <your package>

Thank you both of you.

I’ll give it a try.