Home > front end >  Module not found error but I have pip installed the module
Module not found error but I have pip installed the module

Time:08-04

I have correctly pip installed the module, but I am still getting an error and I am not sure why.

My Code:

21:from Crypto.Cipher import AES

22:from PIL import ImageGrab

23:from win32crypt import CryptUnprotectData

Error is: File "main.py", line 21, in ModuleNotFoundError: No module named 'Crypto'

(I am an amateur btw)

CodePudding user response:

if you are working on a chromebook this happens and to my knowledge theres no good workaround

CodePudding user response:

Try this, also be aware of where are you running the pip command, sometimes you need to run it in the CMD other times it is OK in the terminal or your IDE.

#            
  • Related