There may be an issue with using AToMPM with Python3.10:
"
Probably a problem on my end, issue with python 3.10, kept getting error message ModuleNotFoundError: No module named '_distutils_hack'. Turns out it is from the module symbol that comes with setuptools, which was declared deprecated in Python3.9 and removed altogether in Python 3.10. Can be fixed using pip3 install setuptools or by downgrading Python.
Kept getting seg faults with Python 3.10 despite installing setuptools, so created a new conda environment with Python 3.9 instead which fixed it.
"
There may be an issue with using AToMPM with Python3.10:
" Probably a problem on my end, issue with python 3.10, kept getting error message ModuleNotFoundError: No module named '_distutils_hack'. Turns out it is from the module symbol that comes with setuptools, which was declared deprecated in Python3.9 and removed altogether in Python 3.10. Can be fixed using pip3 install setuptools or by downgrading Python. Kept getting seg faults with Python 3.10 despite installing setuptools, so created a new conda environment with Python 3.9 instead which fixed it. "