Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. General talk
  3. Qt 6
  4. Is it possible to convert pyqt6 to exe with pyinstaller?

Is it possible to convert pyqt6 to exe with pyinstaller?

Scheduled Pinned Locked Moved Unsolved Qt 6
2 Posts 2 Posters 1.3k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    aleksandr21
    wrote on 11 Feb 2021, 19:36 last edited by
    #1

    I've tried it but got error: "Failed to execute script".
    Command that i use: pyinstalle --windowed --onefile app.py
    Python code:
    import sys
    from PyQt6 import QtWidgets

    def main():

    app = QtWidgets.QApplication(sys.argv)
    
    w = QtWidgets.QWidget()
    w.resize(250, 150)
    w.move(300, 300)
    w.setWindowTitle('Simple')
    w.show()
    
    sys.exit(app.exec())
    

    if name == 'main':
    main()
    logs:
    71 INFO: PyInstaller: 4.2
    71 INFO: Python: 3.7.9
    71 INFO: Platform: Windows-10-10.0.18362-SP0
    72 INFO: wrote C:\Users\Rasto\OneDrive\Documents\appp\app.spec
    74 INFO: UPX is not available.
    83 INFO: Extending PYTHONPATH with paths
    ['C:\Users\Rasto\OneDrive\Documents\appp',
    'C:\Users\Rasto\OneDrive\Documents\appp']
    92 INFO: checking Analysis
    94 INFO: Building because pathex changed
    94 INFO: Initializing module dependency graph...
    97 INFO: Caching module graph hooks...
    108 WARNING: Several hooks defined for module 'win32ctypes.core'. Please take care they do not conflict.
    113 INFO: Analyzing base_library.zip ...
    1658 INFO: Processing pre-find module path hook distutils from 'c:\users\rasto\appdata\local\programs\python\python37\lib\site-packages\PyInstaller\hooks\pre_find_module_path\hook-distutils.py'.
    1659 INFO: distutils: retargeting to non-venv dir 'c:\users\rasto\appdata\local\programs\python\python37\lib'
    2608 INFO: Caching module dependency graph...
    2698 INFO: running Analysis Analysis-00.toc
    2714 INFO: Adding Microsoft.Windows.Common-Controls to dependent assemblies of final executable
    required by c:\users\rasto\appdata\local\programs\python\python37\python.exe
    2768 INFO: Analyzing C:\Users\Rasto\OneDrive\Documents\appp\app.py
    2785 INFO: Processing module hooks...
    2785 INFO: Loading module hook 'hook-difflib.py' from 'c:\users\rasto\appdata\local\programs\python\python37\lib\site-packages\PyInstaller\hooks'...
    2786 INFO: Excluding import of doctest from module difflib
    2787 INFO: Loading module hook 'hook-distutils.py' from 'c:\users\rasto\appdata\local\programs\python\python37\lib\site-packages\PyInstaller\hooks'...
    2790 INFO: Loading module hook 'hook-encodings.py' from 'c:\users\rasto\appdata\local\programs\python\python37\lib\site-packages\PyInstaller\hooks'...
    2876 INFO: Loading module hook 'hook-heapq.py' from 'c:\users\rasto\appdata\local\programs\python\python37\lib\site-packages\PyInstaller\hooks'...
    2878 INFO: Excluding import of doctest from module heapq
    2879 INFO: Loading module hook 'hook-pickle.py' from 'c:\users\rasto\appdata\local\programs\python\python37\lib\site-packages\PyInstaller\hooks'...
    2887 INFO: Excluding import of argparse from module pickle
    2887 INFO: Loading module hook 'hook-sysconfig.py' from 'c:\users\rasto\appdata\local\programs\python\python37\lib\site-packages\PyInstaller\hooks'...
    2889 INFO: Loading module hook 'hook-xml.py' from 'c:\users\rasto\appdata\local\programs\python\python37\lib\site-packages\PyInstaller\hooks'...
    3102 INFO: Looking for ctypes DLLs
    3102 INFO: Analyzing run-time hooks ...
    3113 INFO: Looking for dynamic libraries
    3196 WARNING: lib not found: Qt6Gui.dll dependency of c:\users\rasto\appdata\local\programs\python\python37\lib\site-packages\PyQt6\QtWidgets.pyd
    3201 WARNING: lib not found: Qt6Core.dll dependency of c:\users\rasto\appdata\local\programs\python\python37\lib\site-packages\PyQt6\QtWidgets.pyd
    3202 WARNING: lib not found: Qt6Widgets.dll dependency of c:\users\rasto\appdata\local\programs\python\python37\lib\site-packages\PyQt6\QtWidgets.pyd
    3300 INFO: Looking for eggs
    3300 INFO: Using Python library c:\users\rasto\appdata\local\programs\python\python37\python37.dll
    3302 INFO: Found binding redirects:
    []
    3305 INFO: Warnings written to C:\Users\Rasto\OneDrive\Documents\appp\build\app\warn-app.txt
    3342 INFO: Graph cross-reference written to C:\Users\Rasto\OneDrive\Documents\appp\build\app\xref-app.html
    3349 INFO: checking PYZ
    3351 INFO: Building because toc changed
    3351 INFO: Building PYZ (ZlibArchive) C:\Users\Rasto\OneDrive\Documents\appp\build\app\PYZ-00.pyz
    3703 INFO: Building PYZ (ZlibArchive) C:\Users\Rasto\OneDrive\Documents\appp\build\app\PYZ-00.pyz completed successfully.
    3713 INFO: checking PKG
    3714 INFO: Building because toc changed
    3715 INFO: Building PKG (CArchive) PKG-00.pkg
    5786 INFO: Building PKG (CArchive) PKG-00.pkg completed successfully.
    5788 INFO: Bootloader c:\users\rasto\appdata\local\programs\python\python37\lib\site-packages\PyInstaller\bootloader\Windows-64bit\runw.exe
    5788 INFO: checking EXE
    5796 INFO: Building because icon changed
    5797 INFO: Building EXE from EXE-00.toc
    5802 INFO: Copying icons from ['c:\users\rasto\appdata\local\programs\python\python37\lib\site-packages\PyInstaller\bootloader\images\icon-windowed.ico']
    5867 INFO: Writing RT_GROUP_ICON 0 resource with 104 bytes
    5867 INFO: Writing RT_ICON 1 resource with 3752 bytes
    5868 INFO: Writing RT_ICON 2 resource with 2216 bytes
    5876 INFO: Writing RT_ICON 3 resource with 1384 bytes
    5877 INFO: Writing RT_ICON 4 resource with 38188 bytes
    5879 INFO: Writing RT_ICON 5 resource with 9640 bytes
    5879 INFO: Writing RT_ICON 6 resource with 4264 bytes
    5886 INFO: Writing RT_ICON 7 resource with 1128 bytes
    5891 INFO: Updating manifest in C:\Users\Rasto\OneDrive\Documents\appp\build\app\runw.exe.fjkfasmh
    5950 INFO: Updating resource type 24 name 1 language 0
    5953 INFO: Appending archive to EXE C:\Users\Rasto\OneDrive\Documents\appp\dist\app.exe
    6028 INFO: Building EXE from EXE-00.toc completed successfully.
    I would appreciate any help
    P.S. I've tried to use --path and add dll files to .spec file.

    1 Reply Last reply
    0
    • D Offline
      D Offline
      deleted264
      wrote on 7 Mar 2021, 05:35 last edited by
      #2

      Si se puede ,pero también hay otras librerías para compilar a exe tu aplicación

      1 Reply Last reply
      0

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved