Skip to content

Tag: pyinstaller

How do I include this file with pyinstaller?

I have this file certify.command but I have no idea how to include it in pyinstaller -Fw –icon=AppIcon.icns Converter.py. I want my app to run on my other macs and to use my app I need to run the Install Certificates.command file so my app can access HTTPS. I don’t want to install python on my oth…

bug in installing pyinstaller

So I tried the pip install pyinstaller command and thats what happened: So I had this bug: Does anyone know how I can solve it?? Answer The error says: Try installing wheel first. mostly the error describes itself. try going through them carefully, it will save you lot of debugging time. Run this command: Let…

Licenses for dependencies with Pyinstaller

I have an application I have written in Python, that is being packaged with Pyinstaller. From what I understand (and I am not a lawyer) and from the Pyinstaller FAQ bundling the source code and distributing with my own license seems like it is OK (points 1 and 2). I have no intention of modifying the Pyinstal…

exe file not found while compiled with pyinstaller

I want to execute an exe file from a python file that is compiled using pyinstaller I’m using the following code: And I compile it using: Which creates incluse.exe and If I execute it I get the following error: What I want it to do is execute the executable.exe that I included, which should come up with…