![]() |
VOOZH | about |
In this article, we will learn how to install Face Recognition in Python on macOS. Recognize and manipulate faces from Python or from the command line with the worldβs simplest face recognition library. Built using dlibβs state-of-the-art face recognition built with deep learning.
Follow the below steps to install the Face Recognition package on macOS using pip:
Step 1: Install the latest Python3 in MacOS
Step 2: Check if pip3 and python3 are correctly installed.
python3 --version pip3 --versionπ Image
Step 3: Upgrade your pip to avoid errors during installation.
pip3 install --upgrade pipπ Image
Step 4: Enter the following command to install Face Recognition using pip3.
pip3 install face-recognitionπ installing Face Recognition package on macOS using pip
Follow the below steps to install the Face Recognition package on macOS using the setup.py file:
Step 1: Download the latest source package of Face Recognition for python3 from here.
curl https://files.pythonhosted.org/packages/6c/49/75dda409b94841f01cbbc34114c9b67ec618265084e4d12d37ab838f4fd3/face_recognition-1.3.0.tar.gz > face-re.tar.gzπ downloading the source package for face_recognition in macos
Step 2: Extract the downloaded package using the following command.
tar -xzvf face-re.tar.gzπ extracting the face-re.tar.gz file in macos
Step 3: Go inside the folder and Enter the following command to install the package.
Note: You must have developer tools for XCode MacOS installed in your system
cd face_recognition-1.3.0 python3 setup.py installπ installing Face Recognition on macOS using the setup.py file
Make the following import in your python terminal to verify if the installation has been done properly:
import face_recognitionπ Verifying Face Recognition installation on macOS
If there is any error while importing the module then is not installed properly.