When trying to issue pip install chatdocs with the latest Python version installed (3.12), it throws a ModuleNotFoundError: No module named 'distutils' message. This is due to the distutils module that has been removed from the standard library.
Please update the repository to the latest Python version if possible and remove the requirement.
A temporary workaround is to install setuptools via pip install setuptools.
References
When trying to issue
pip install chatdocswith the latest Python version installed (3.12), it throws aModuleNotFoundError: No module named 'distutils'message. This is due to the distutils module that has been removed from the standard library.Please update the repository to the latest Python version if possible and remove the requirement.
A temporary workaround is to install
setuptoolsviapip install setuptools.References