About 54 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. python - Comprehensive tutorial on Pyinstaller? - Stack Overflow

    I'm looking for a tutorial on PyInstaller that will explain things like how to create .pkg files how to include/exclude modules how to include data files inside the install directory. I cannot mak...

  4. How to build multiple .py files into a single executable file using ...

    Jul 21, 2018 · I have used pyinstaller to make the executable file, but the problem is I built each .py file into its own .exe file. But I want to make a single .exe file through which all the .py files can be used.

  5. How to include only needed modules in pyinstaller?

    Mar 23, 2019 · 2 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 …

  6. 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 …

  7. 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 …

  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. 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:

  10. Determining application path in a Python EXE generated by pyInstaller

    import os config_name = 'myapp.cfg' config_path = os.path.join(sys.path[0], config_name) However, it seems the sys.path is blank when its called from an EXE generated by pyInstaller. This same …