myd510

Results 3 comments of myd510

> 尝试:pip install --upgrade setuptools wheel Tanks, its worked,

If you want to be more friendly to versions lower 3.12, maybe you can replace `from distutils.version import LooseVersion` with only the following code: ```python if sys.version_info >= (3, 12):...

> > If you want to be more friendly to versions lower 3.12, maybe you can replace `from distutils.version import LooseVersion` with only the following code: > > ```python >...