About 55 results
Open links in new tab
  1. python - How to use pyinstaller? - Stack Overflow

    Dec 24, 2015 · An example could be pyinstaller.exe --onefile --windowed --icon=app.ico app.py where: --onefile: Create a one-file bundled executable. --windowed: Parameter to chooseif you are compiling …

  2. python - How to install pyinstaller (windows) - Stack Overflow

    Jan 6, 2021 · Installing Pyinstaller Installing pyinstaller is pretty simple and straight forward. All you gotta do is pip install pyinstaller or python -m pip install pyinstaller (obviously you have to make sure that …

  3. Including a directory using PyInstaller - Stack Overflow

    Jul 4, 2012 · All of the documentation for PyInstaller talks about including individual files. Is it possible to include a directory, or should I write a function to create the include array by traversing my inc...

  4. How to include only needed modules in pyinstaller?

    Mar 23, 2019 · 3 In addition to the most voted answer, you should install pyinstaller within your current virtual environment, and use --paths to select the right package directory. Otherwise, pyinstaller will …

  5. Creating a pyinstaller executable that uses virtualenv imported modules

    Mar 18, 2019 · So, the title basically covers my question. I've created a project using virtualenv, e.g. I have to source ./env/bin/activate to run my script. When I try creating an executable using:

  6. python - How to install PyInstaller? - Stack Overflow

    Jun 10, 2016 · 41 To install PyInstaller: Go to your command prompt (Start -> Run -> cmd) type the following command cd c:\python27\scripts press enter, this should be where your pip.exe file is …

  7. python - pyinstaller command not found - Stack Overflow

    Dec 16, 2018 · I am using Ubuntu on VirtualBox. How do I add pyinstaller to the PATH? The issue is when I say pyinstaller file.py it says pyinstaller command not found It says it installed correctly, and …

  8. PyInstaller: How to fix "Missing Module" errors? - Stack Overflow

    Jul 28, 2020 · I used pyinstaller --onefile GUI.py to try this out since it seemed easy enough. However, I ended up with these errors in the warn-GUI.txt file (The command actually built the .exe but when I …

  9. I am stuck with PyInstaller Error ModuleNotFound - Stack Overflow

    Jul 6, 2025 · I am loosing my mind on trying to build an .exe file with pyinstaller, since even thou I made sure to pip install the module and add it to hidden import it still cannot find it. To be more specific...

  10. How can I convert a .py to .exe for Python? - Stack Overflow

    PyInstaller I'm running 3.6 and PyInstaller is working great! The command I use to create my exe file is: pyinstaller -wF myfile.py The -wF will create a single EXE file. Because all of my programs have a …