I originally posted thison Stack Overflow. I'm trying to create a single-file executable for Windows from a Python application, usingpyinstaller. I downloaded the experimental Python 3 branch ofpyinstallerfromhere(scroll down and you'll find the download link, the file ispy3.zip). And I insta...
PyInstaller's job is to bundle up everything a Python application needs into a single package so it runs without requiring any external Python dependencies. Its job is not to make modifications to the system. It's up to the user to download the package they want, and it's up to the us...