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've searched the issue tracker and is pretty sure that there's no duplicate issue already filed
I've built the latest development snapshot using the instructions in README and verified that the issue can still be reproduced (for bug reports)
Issue Reproduce Instructions
Create virtual Python 3.10.6 environment
Install WoeUSB-ng according to the installation instructions, i.e. pip3 install WoeUSB-ng
Expected Behavior
No error and WoeUSB-ng installed
Current Behavior
Installations is aborted with error ModuleNotFoundError: No module named 'attrdict'
Installed attrdict manually
Installation is again aborted, error: ImportError: cannot import name 'Mapping' from 'collections'
Info of My Environment
WoeUSB Version
WoeUSB-ng-0.2.10
Information about the Operating System
Ubuntu 20.04.4 LTS
The text was updated successfully, but these errors were encountered:
I guess you are installing this package in python3.10? the Mapping class resides now in collections.abc
A workaround would be to create a python3.9 virtual environment.
attrdict should update its code to "from collections.abc import Mapping"
Good Habit Checklist for Issue Reporting
Issue Reproduce Instructions
Expected Behavior
Current Behavior
Info of My Environment
WoeUSB Version
Information about the Operating System
The text was updated successfully, but these errors were encountered: