How to install Python libraries using Pip (for instance requests, jinja2, falcon etc)** in Inno Setup?
I know one method to install Python libraries using Pip in Inno Setup (just a sample code in the below):
Inno Setup file:
[Files]
FileName: "python_file.py";
python_file.py
import subprocess
subprocess.call(["pip", "install", "requests"])
May I know, is there any other way to install Python libraries using Pip in Inno Setup?