Recompile PyInstaller
WIP
Download latest source:
Unzip then
sh
cd ./bootloader
<YOUR_PYTHON_INSTALL>/python ./waf all --target-arch=64bit
1
2
2
Then open a powershell or shell as administrator/root:
sh
cd <PYINSTALLER_ROOT_ZIP_DIR>
<YOUR_PYTHON_INSTALL>/python setup.py install
1
2
2
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
1
2
3
4
5
6
7
2
3
4
5
6
7