face_recognition icon indicating copy to clipboard operation
face_recognition copied to clipboard

I need help with face_recognition

Open Xardesso opened this issue 1 year ago • 3 comments

  • face_recognition version: i don't know how to check this
  • Python version: Python 3.10.10
  • Operating System: windows

Description

I paste piece of code from web and this work and I exit py charm and 1 hour later I want to continue work and this stop working Idk what may cause this error

Error: image

Xardesso avatar Mar 13 '23 20:03 Xardesso

This error message is probably due to the face_recognition library not being installed yet. Alternatively, you can use a command to check if the face_recognition library has already been installed.

pip list This command can see what library has already been installed in your environment.

meowmeow123221 avatar Mar 17 '23 06:03 meowmeow123221

The version of Python you are using may not be supported by the library, Try lowering your python version to 3.8 This might help. Also run pip install face-recognition command to make sure the library is installed. You can check the installed version of the library by using the command in your terminal : face-recognition.__version__ or pip show face-recognition to see the complete information about the library.

yxsh16 avatar Mar 26 '23 14:03 yxsh16

The IDE is telling you that you don't have face-recognition installed:

image

So, run this command in the Terminal: pip install face-recognition

P.S.: pls, close the issue if it's ok!

leomm20 avatar Mar 27 '23 16:03 leomm20