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
You can do
!pip listto check if the library is installed in your current virtual environment.You can also try to uninstall the library and reinstall it by doing
then