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
I am currently trying to install via source inside a virtual env using : git clone https://github.com/tomazc/iCount cd iCount pip install -e .
The installation seems to be successful but when I try to use iCount --help I get this error AttributeError: module 'collections' has no attribute 'Callable'
Am I not calling the tool the right way ?
Thanks in advance
Valerie
The text was updated successfully, but these errors were encountered:
The code is not updated. collections.Callable was moved to collections.abc.Callable in python 3.10. You could downgrade your python to 3.9. This resolved the issue for me, however, best would be if the authors update the code.
Hi,
I am currently trying to install via source inside a virtual env using :
git clone https://github.com/tomazc/iCount
cd iCount
pip install -e .
The installation seems to be successful but when I try to use
iCount --help
I get this errorAttributeError: module 'collections' has no attribute 'Callable'
Am I not calling the tool the right way ?
Thanks in advance
Valerie
The text was updated successfully, but these errors were encountered: