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
While trying out the project on my system in a virtual env.
I am encountering following error:
Traceback (most recent call last):
File "/home/ameya/venvs/bin/amodem", line 5, in <module>
from amodem.__main__ import _main
File "/home/ameya/venvs/lib/python3.12/site-packages/amodem/__main__.py", line 9, in <module>
import pkg_resources
ModuleNotFoundError: No module named 'pkg_resources'
The issue disappears after installing the following package in the virtualenv:
pip install setuptools
The text was updated successfully, but these errors were encountered:
I also see that the PR #67 updates the setuptools dependency in the CI.
But it also needs to be added to the setup.py for the dependency when trying to install the tool using pip.
Hello,
While trying out the project on my system in a virtual env.
I am encountering following error:
The issue disappears after installing the following package in the virtualenv:
The text was updated successfully, but these errors were encountered: