Skip to content

Recompile PyInstaller

WIP

Download latest source:

Unzip then

sh
cd ./bootloader 
<YOUR_PYTHON_INSTALL>/python ./waf all --target-arch=64bit

Then open a powershell or shell as administrator/root:

sh
cd <PYINSTALLER_ROOT_ZIP_DIR>
<YOUR_PYTHON_INSTALL>/python setup.py install

Using rez

rez-pip -i .

# To use pyinstaller with only one python script file.
rez env pyinstaller -- pyinstaller --onefile my_file.py

# Example for a qt script
rez env pyinstaller PySide6 -- pyinstaller --onefile my_file.py