Pyinstaller missing bootloader

后端 未结 2 1629
广开言路
广开言路 2020-12-22 00:35

I fresh installed Python37-32 on win10-64 All requirements seem to be satisfied and my hello world python file is executing

if __name__ == \'__main__\' :
            


        
2条回答
  •  甜味超标
    2020-12-22 01:00

    Download pyinstaller and install from source instead using pip.

    python setup.py install
    

    Then if your system is 64bit, the 64bit bootloader is built altough the python37-32 needs 32 bit bootloader. In the source cd bootloader and run python ./waf all --target-arch=32bit as explained here

    Then copy run.exe from build folder to pyinstaller 32bit bootloader folder.

    An issue has been opened on pyinstaller github.

提交回复
热议问题