Apr-27-2020, 06:45 AM
I am a novice Python user and am hoping to get help installing a program. Please let me know if this is the right place to post.
I got the code here:
https://github.com/CooperRS/decrypt-otpauth-files
This is what I ran in the terminal. I also have IDLE installed, but it is version 3.6.9 and the instructions say 3.7 is a dependency.
I got the code here:
https://github.com/CooperRS/decrypt-otpauth-files
This is what I ran in the terminal. I also have IDLE installed, but it is version 3.6.9 and the instructions say 3.7 is a dependency.
1 |
pipenv run python3. 7 decrypt_otpauth.py decrypt_backup - - encrypted - otpauth - backup backup - 1.0 .otpauthdb |
Error:Traceback (most recent call last):
File "decrypt_otpauth.py", line 11, in <module>
from bpylist import archiver
ModuleNotFoundError: No module named 'bpylist'
I know I have multiple versions of Python installed. Not sure if it is important:1 |
ls / usr / bin / python * |
Output:/usr/bin/python /usr/bin/python3.6 /usr/bin/python3.7m
/usr/bin/python2 /usr/bin/python3.6-config /usr/bin/python3-config
/usr/bin/python2.7 /usr/bin/python3.6m /usr/bin/python3m
/usr/bin/python2-pbr /usr/bin/python3.6m-config /usr/bin/python3m-config
/usr/bin/python3 /usr/bin/python3.7
Let me know what steps I should try or if I should post output of any other code.