priyankchheda / chrome_password_grabber

Get unencrypted 'Saved Password' from Google Chrome
GNU General Public License v3.0
725 stars 133 forks source link

ModuleNotFoundError: No module named 'win32crypt' #14

Open Pkpratik opened 3 years ago

Pkpratik commented 3 years ago

Is this code still working?

If yes can you please help me solve this error: ModuleNotFoundError: No module named 'win32crypt' I am using windows 10

priyankchheda commented 3 years ago

For Windows, you need to install win32crypt module. pip install pypiwin32 (Not sure if this command is still working. Google it.)

Errorcrafter commented 3 years ago

if win32crypt inst supported anymore why is still implemented in the code though

Ashthetik commented 3 years ago

win32crypt is part of pypiwin32 I believe, since it still works

peter-rs commented 3 years ago

Hi there, I have a strange issue that involves pyinstaller. win32crypt and chrome password grabber so I believe it's relevant here. When I run import win32crypt in a shell or from an IDLE script, I get no error. However when building with pyinstaller I get this fatal error: missing module named win32crypt - imported by #### (top-level), C:\python\###.py (top-level)

Tugamer89 commented 1 year ago

pip install pypiwin32

Zinou16 commented 2 months ago

This command fixed the issue for me: py -m pip install pypiwin32