marella / chatdocs

Chat with your documents offline using AI.
MIT License
683 stars 97 forks source link

Update to Python 3.12 - Remove 'stdlib distutils module' requirement (deprecated) #97

Open robertgro opened 9 months ago

robertgro commented 9 months ago

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