Installing Face recognition module with dlib on Raspberry Pi 5 with Python 3 using terminal

In this guide, we’ll walk through the steps to install the face_recognition library on a Raspberry Pi 5 using dlib.

Step 1: Install dlib

To install dlib, follow the detailed instructions here

Step 2: Activate Your Python Environment

Activate your Python virtual environment:

 workon Saber

Step 3: Install face_recognition

Install the face_recognition library using pip:

 pip3 install face_recognition
**Congratulations! Your Python library has been successfully installed** {" "}

Here is the original face_recognition GitHub Repository