Home > Software engineering >  Error while installing AGE AGType parser and driver support for Python
Error while installing AGE AGType parser and driver support for Python

Time:01-24

I am installing AGE driver support for python by following their documentation. I have python 3.10 on my Ubuntu. I have cloned the repository successfully. But when i run the command python setup.py install. I am getting this error. ERROR It would be great if someone help.

CodePudding user response:

This issue is not specific to the apache-age driver, but it is specific to the python environment. This issue has been extensively addressed in the following StackOverflow thread.

I hope this helps.

ModuleNotFoundError: No module named 'distutils.core'

CodePudding user response:

This means that you don't have the package installed.
Run the following commands
sudo apt update
sudo apt install python3-distutils
sudo apt install python3-apt

And if the error still not goes away try re-installing the packages.

  • Related