ParthJadhav / Tkinter-Designer

An easy and fast way to create a Python GUI 🐍
BSD 3-Clause "New" or "Revised" License
8.62k stars 793 forks source link

Could Not Install Tkinter Designer #405

Open pythonsmurfmain opened 1 month ago

pythonsmurfmain commented 1 month ago

py:46: RuntimeWarning: Pillow 8.4.0 does not support Python 3.12 and does not provide prebuilt Windows binaries. We do not recommend building from source on Windows. lambda: warnings.warn( [end of output]

note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for Pillow Running setup.py clean for Pillow Failed to build Pillow ERROR: Could not build wheels for Pillow, which is required to install pyproject.toml-based projects

AakashJayant commented 1 month ago

this is same with me !... Have you got the solution if yes then tell help me out as well

dlasusa commented 1 month ago

@pythonsmurfmain @AakashJayant

Tkinter Designer requires pillow 8.4.0 (which is sadly pretty old now), but that version of Pillow doesn't support Python 3.12. In fact, the newest Python version it supports is Python 3.10. So if you create a venv with Python 3.10, you should then be able to pip install tkdesigner

Ideally, Tkinter Designer will be updated to support a current version of Pillow, but until then, I hope this helps.