You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
When trying to issue
pip install chatdocs
with 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
setuptools
viapip install setuptools
.References
The text was updated successfully, but these errors were encountered: