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
Hi, everyone so i want to extract the payload.bin and i got this:
python payload_dumper.py payload.bin
Traceback (most recent call last):
File "C:\Users\ngoan\AppData\Local\Programs\Python\Python310\payload_dumper.py", line 12, in
import update_metadata_pb2 as um
File "C:\Users\ngoan\AppData\Local\Programs\Python\Python310\update_metadata_pb2.py", line 8, in
from google.protobuf import reflection as _reflection
File "C:\Users\ngoan\AppData\Local\Programs\Python\Python310\lib\site-packages\google\protobuf\reflection.py", line 58, in
from google.protobuf.internal import python_message as message_impl
File "C:\Users\ngoan\AppData\Local\Programs\Python\Python310\lib\site-packages\google\protobuf\internal\python_message.py", line 62, in
from google.protobuf.internal import containers
File "C:\Users\ngoan\AppData\Local\Programs\Python\Python310\lib\site-packages\google\protobuf\internal\containers.py", line 182, in
MutableMapping = collections.MutableMapping
AttributeError: module 'collections' has no attribute 'MutableMapping'
If anyone has answer let me know. Thanks!
The text was updated successfully, but these errors were encountered:
same error, i see you are using python3.10, same mistake as me. downgrade to at least 3.8 or 3.9 and run from there, python3.8 -m pip install -r requirements.txt
you see, python3.10 does not contain the attribute MutableMapping from the module collections, which have been removed from this version, existing previously on 3.8.
you can verify that looking at the differences between at /usr/lib/python3.8 and /usr/lib/python3.10 on Linux, for example (idk the paths on Windows, i'm sorry)
Hi, everyone so i want to extract the payload.bin and i got this:
python payload_dumper.py payload.bin
Traceback (most recent call last):
File "C:\Users\ngoan\AppData\Local\Programs\Python\Python310\payload_dumper.py", line 12, in
import update_metadata_pb2 as um
File "C:\Users\ngoan\AppData\Local\Programs\Python\Python310\update_metadata_pb2.py", line 8, in
from google.protobuf import reflection as _reflection
File "C:\Users\ngoan\AppData\Local\Programs\Python\Python310\lib\site-packages\google\protobuf\reflection.py", line 58, in
from google.protobuf.internal import python_message as message_impl
File "C:\Users\ngoan\AppData\Local\Programs\Python\Python310\lib\site-packages\google\protobuf\internal\python_message.py", line 62, in
from google.protobuf.internal import containers
File "C:\Users\ngoan\AppData\Local\Programs\Python\Python310\lib\site-packages\google\protobuf\internal\containers.py", line 182, in
MutableMapping = collections.MutableMapping
AttributeError: module 'collections' has no attribute 'MutableMapping'
If anyone has answer let me know. Thanks!
The text was updated successfully, but these errors were encountered: