Running on OpenCV latest and Python 3.10. Throwing a Module Error

52 Views Asked by At

I'm trying to import the module of face_detection in python 3.10. despite having the lib installed still this bugging me. ModuleNotFoundError
Traceback (most recent call last) Cell In[1], line 1 ----> 1 import face_recognition
2 import cv2
3 import numpy as np Modu

anything that would help. using anaconda3 jupyter notebook

1

There are 1 best solutions below

1
Takuphilchan On

You can do !pip list to check if the library is installed in your current virtual environment.

You can also try to uninstall the library and reinstall it by doing

!pip uninstall face-recognition

then

!pip install face-recognition