rasbt / mlxtend

A library of extension and helper modules for Python's data analysis and machine learning libraries.
https://rasbt.github.io/mlxtend/
Other
4.82k stars 853 forks source link

distutils has been removed for python 3.12 and above #1071

Closed peanutsee closed 7 months ago

peanutsee commented 7 months ago

Describe the bug

After pip install mlxtend, ModuleNotFoundError: No module named 'distutils' error appears. After investigating, it seems that distutils had been removed from standard library in python 3.12 and above.

Possible fix

Third-party Setuptools package continues to provide distutils.

peanutsee commented 7 months ago

This issue is fixed in PR #1072 . Thanks @rasbt for reviewing and closing the PR!