hoffstadt / DearPyGui

Dear PyGui: A fast and powerful Graphical User Interface Toolkit for Python with minimal dependencies
https://dearpygui.readthedocs.io/en/latest/
MIT License
12.62k stars 669 forks source link

Local wheel guide outdated #2315

Open ben-kaye opened 3 months ago

ben-kaye commented 3 months ago

My Improvement

https://github.com/hoffstadt/DearPyGui/wiki/Local-Wheel did not work with my macosx 14 with aarch64 and generated this error when installing: ERROR: dearpygui-1.11.1-cp311-cp311-macosx_14_4_arm64.whl is not a supported wheel on this platform.

Fix:

+ python -m build --wheel
- python -m setup bdist_wheel --plat-name macosx-11.0-arm64 --dist-dir dist

Following the guides in https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/ led me to this command. I tried this and it generated a wheel which successfully installed.