Relative Content

Tag Archive for pythonpyinstallerpython-venv

Running python scripts within pyinstaller without venv

I have created an application with pyinstaller that builds to a Windows executable, so a user can open it and from a friendly UI select a python script from a list, and then run it (all within this app), which works using subprocess.Popen. The output of the script that they’ve selected is then displayed within the app also. The idea is that they don’t have to have any technical know-how to run these scripts, and ideally that they don’t need to have Python installed on their machine either.