web-ui
web-ui copied to clipboard
distutils module Error in python(3.12+)
So When I was running this program using python version 3.12.x I got an error saying distutlis no module is there Tried Installing through pip, but then I realized that this module is no longer available for that version and its integrated in another package
So For This simple Fix
pip install setuptools
And The Issue was in this file : browser_settings_tab.py
add this line of code in that file for fixing it
from setuptools._distutils.util import strtobool
I get the same error and the solution provided by @BlackHawk616 fixed it.