About 65,100 results
Open links in new tab
  1. ModuleNotFoundError: No module named 'distutils' in Python 3.12

    Oct 7, 2023 · It appears that customtkinter uses distutils from the standard library. Unfortunately, you're using the newly released Python 3.12, which removed distutils after it being deprecated …

  2. distutils — Building and installing Python modules

    3 days ago · distutils — Building and installing Python modules ¶ Deprecated since version 3.10, removed in version 3.12. This module is no longer part of the Python standard library. It was …

  3. No module named 'distutils.util' ...but distutils is installed?

    Nov 11, 2021 · Python 3.12 does not come with a stdlib distutils module (changelog), because distutils was deprecated in 3.10 and removed in 3.12. You can still use distutils on Python 3.12 …

  4. Solved: How to Fix the 'No module named distutils.util'

    Dec 5, 2024 · Learn how to resolve the common Python error when importing distutils, including practical solutions for Python 3.10 and later versions.

  5. Why did I get an error ModuleNotFoundError: No module named 'distutils'?

    You can still use distutils on Python 3.12+ by installing setuptools. When that doesn't work, you may need stay on Python < 3.12 until the 3rd-party package (skfuzzy in this case) publishes …

  6. How can one fully replace distutils, which is deprecated in 3.10?

    According to PEP 632, distutils will be formally marked as deprecated, and in Python 3.12, it will be removed. My product is soon going to support Python 3.10 and I don't want to put up with …

  7. Resolving the 'No module named distutils' Error in Python

    Jan 23, 2025 · The distutils module was a cornerstone of Python's standard library, primarily used for building and installing Python packages. However, starting with Python 3.10, distutils was …

  8. GitHub - pypa/distutils: distutils as found in cpython

    distutils as found in cpython. Contribute to pypa/distutils development by creating an account on GitHub.

  9. standard-distutils · PyPI

    Oct 29, 2024 · standard-distutils 3.11.9 pip install standard-distutils Copy PIP instructions Latest version Released: Oct 29, 2024

  10. Python’s distutils is Gone in Ubuntu 24.04? (and a Simple

    Jun 26, 2025 · It turns out that with Python 3.12 on Ubuntu 24.04, the distutils module has been completely removed from the system packages, and the python3-distutils package is no longer …