I'm trying to package my GTK3+ Python 3 script using PyInstaller on Windows 10.
GTK3+ and the Python bindings are installed and working, using MSYS2 MinGW as per the GTK+ instructions.
In MSYS2 MinGW, when I type:
pip3 install pyinstaller
I get the error: Your platform is not yet supported. Please define constant PYDYLIB_NAMES for your platform.
So I attempted to install PyInstaller manually from Windows PowerShell by downloading and extracting the tar.gz file for PyInstaller and then running:
python3 setup.py install
But with that, I get "ModuleNotFoundError: No module named 'setuptools'".
How can I install PyInstaller in MinGW, for use on a GTK3+ Python3 script?