I am not able to import face_recognition module. It gives this error:
ImportError: No module named 'face_recognition'
I install face_recognition module for both python 2 and 3 with following commands:
pip2 install face_recognition
pip3 install face_recognition
When I again run the commands above it gives:

Then, I also tried this:
pip3 --no-cache-dir install face_recognition
Here is the result:

Running these commands solved the problem
sudo pip3 --no-cache-dir install face_recognition
sudo pip2 --no-cache-dir install face_recognition
Most helpful comment
Running these commands solved the problem
sudo pip3 --no-cache-dir install face_recognition
sudo pip2 --no-cache-dir install face_recognition