weirdAAL
weirdAAL copied to clipboard
ImportError: cannot import name 'Iterable' from 'collections'
Issue: Cannot import name 'Iterable' from 'collections' (/usr/lib/python3.11/collections/init.py)
Fix: Iterable
was removed from collections
in Python 3.10. As a consequence, when "from tabulate import tabulate", Iterable isn't correctly imported, so change this line to from collections.abc import Iterable
.