TheBigWazz / python3-idotmatrix-client-gui

reverse engineered python3 client to control all your 16x16 or 32x32 pixel displays (experimental)
GNU General Public License v3.0
6 stars 2 forks source link

Windows 11 - build.sh throws error bout not finding pyinstaller. Solution inside #3

Open BlaXun opened 2 hours ago

BlaXun commented 2 hours ago

If you are using git-bash on windows 11 and you get the error that pyinstaller does not exist then try changing the build.sh to the following content

pip install pyqt5 pip install pyinstaller python -m PyInstaller gui.py -F -w -n "iDotMatrix Controller" -i idmc.ico --distpath ./

For some unknown reason it seems PyInstaller can't be accessed any other way. I could build the gui that way

BlaXun commented 2 hours ago

Nevermind. Still can't run the GUI on windows. I mean, I can run it, but the console shows an error that PIL is not known. I manually installed Pillow... but the error remains

BlaXun commented 2 hours ago

I also had to open cmd as admin and install Pillow and idotmatrix like this

pip install --upgrade Pillow pip install --upgrade idotmatrix

Now I was finally able to run the GUI and add a device :)