I can't install distutils, it says the following error: No matching distribution found for distutils, tell me what to do?

python C:\Users\Admin\Desktop\assistant.py
Traceback (most recent call last):
File “C:\Users\Admin\Desktop\assistant.py”, line 58, in
command = recognize_command()
^^^^^^^^^^^^^^^^^^^
File “C:\Users\Admin\Desktop\assistant.py”, line 12, in recognize_command
with sr.Microphone() as source:
^^^^^^^^^^^^^^^
File “C:\Users\Admin\AppData\Local\Programs\Python\Python312\Lib\site-packages\speech_recognition_init .py", line 80, in init
self.pyaudio_module = self.get_pyaudio()
^^^^^^^^^^^^^^^^^^
File "C:\Users\Admin\AppData\Local\Programs\Python\Python312\Lib\site-packages\speech_recognition
init _.py”, line 111, in get_pyaudio
from distutils.version import LooseVersion
ModuleNotFoundError: No module named ‘distutils’

distutils has been deprecated for a long time and has now been removed.
Use setuputils in its place.

This is explained on the bug tracker for the project.

In the future, please explain the problem in your post - don’t just paste an error message and give a title. We should not have to guess about where the code comes from, or about the process you followed to get to this point. The error message you showed is about the motivation for trying to install distutils, but your title talks about the problem trying to do that. This makes it harder to understand what you mean.