About 81 results
Open links in new tab
  1. Why did I get an error ModuleNotFoundError: No module named …

    ModuleNotFoundError: No module named 'distutils'" I already tried to pip uninstall distutils and got this output Note: you may need to restart the kernel to use updated packages. WARNING: Skipping …

  2. 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 since Python …

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

    Nov 11, 2021 · Installed python 3.12 from sources, started getting "ModuleNotFoundError: No module named 'distutils'" when executing pip3. The following worked for virtualenv / particular project that …

  4. ModuleNotFoundError: No module named 'distutils.util'

    May 15, 2020 · ModuleNotFoundError: No module named 'distutils.util' Ask Question Asked 5 years, 8 months ago Modified 1 year, 3 months ago

  5. ImportError: No module named distutils - Stack Overflow

    May 13, 2014 · $ which easy_install which: no easy_install $ cd ../setuptools-1.4/ $ python setup.py install Traceback (most recent call last): File "setup.py", line 12, in ? from distutils.util import …

  6. Python 3.13, ModuleNotFoundError: No module named 'distutils'

    Feb 13, 2024 · Because that version was very old (22.0.2) it depended on distutils which was deprecated in Python 3.12 and later. I resolved the problem by doing the following: Installed another …

  7. Windows: ModuleNotFoundError: No module named 'distutils'

    Python 3.7.2 Pip 18.1 setuptools 40.7.2 Windows-10-10.0.14393-SP0 I've seen people having the No module named 'distutils issue on Linux/Ubuntu (for example, here and here). The reported solution is

  8. ModuleNotFoundError: No module named 'distutils.core'

    Apr 18, 2019 · ModuleNotFoundError: No module named 'distutils.core' I can't figure out what to do. I tried to install distutils: milano@milano-PC:~$ sudo apt-get install python3-distutils Reading package …

  9. No module named 'distutils' despite setuptools installed

    Dec 23, 2023 · This problem is taking place because you have SETUPTOOLS_USE_DISTUTILS=stdlib set in your environment, while Python 3.12 no longer provides any standard-library distutils version at …

  10. python - getting "ModuleNotFoundError: No module named 'distutils ...

    Oct 28, 2023 · I made a Selenium bot on my local Mac, where it works flawlessly. When trying to run it on a virtual Windows 10 machine via google cloud, I'm getting these errors: "Traceback (most …