About 1,160,000 results
Open links in new tab
  1. 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 …

  2. Bundling data files with PyInstaller (--onefile) - Stack Overflow

    I'm trying to build a one-file EXE with PyInstaller which is to include an image and an icon. I cannot for the life of me get it to work with --onefile. If I do --onedir it works all works very we...

  3. Determining application path in a Python EXE generated by …

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

  4. How to change python version for use with pyinstaller

    When you need to bundle your application within one OS but for different versions of Python and support libraries – for example, a Python 3 version and a Python 2.7 version; or a supported …

  5. python - Why does my app created with PyInstaller have a 10 …

    I have an application written in Python and 'compiled' with PyInstaller. It also uses PyQt for the GUI framework. Running this application has a delay of about 10 seconds before the main …

  6. PyInstaller: Single-file executable doesn't run - Stack Overflow

    PyInstaller uses UPX by default if it finds it on the system. For reasons that I still can't grasp, the UPX-packed executable took an extremely long time to self-extract and run. Thus, simply …

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

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

  9. pyinstaller - Packing python scripts into .exe file while keeping ...

    Pyinstaller should trace all modules and dependencies automatically. I usually install a minimal set of dependencies into a fresh Anaconda environment to have the smallest possible build size.

  10. How do I include .dll file in executable using pyinstaller?

    I want to generate a single executable file from my python script. For this I use pyinstaller. I had issues with mkl libraries because I use numpy in the script. I used this hook so solve the issu...