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

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

  5. python - pyinstaller No module named pyinstaller - Stack Overflow

    I have 2 python versions installed under my mac osx sierra: python 3.5 python 2.7 I installed pyinstaller under python3.5 with this command: python3.5 -m pip install pyinstaller If I run again the...

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

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

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

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

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