When installing SBtab on python 3.12, importing it doesn't work due to the following error:
File "...SBtab/pypi_installer/sbtab/__init__.py", line 8, in <module>
from pkg_resources import resource_string
ModuleNotFoundError: No module named 'pkg_resources'
pkg_resources is part of the setuptools package but it is not in the requirements list of SBtab. Installing it using pip solves the problem.
When installing SBtab on python 3.12, importing it doesn't work due to the following error:
pkg_resources
is part of thesetuptools
package but it is not in the requirements list of SBtab. Installing it usingpip
solves the problem.