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 suspect this error is due to me having installed Python both from the official website and Microsoft Store, resulting in 2 different versions of Python on the computer. Please update the README file instructions to reflect this.
The text was updated successfully, but these errors were encountered:
System: Windows 10
First command worked fine:
pip3 install -r requirements.txt
...but the second command triggers an error:
python3 update_verifier.py lineage-18.1-20220108-microG-surya.zip
The last line of the error:
ModuleNotFoundError: No module named 'pyasn1'
And even when I installed/updated the pyasn1 module, there's another missing module:
ModuleNotFoundError: No module named 'rsa'
Issue was solved by removing the '3' from 'python3', thereby replacing 'python3' with 'python':
I suspect this error is due to me having installed Python both from the official website and Microsoft Store, resulting in 2 different versions of Python on the computer. Please update the README file instructions to reflect this.
The text was updated successfully, but these errors were encountered: