Skip to content

Commit 8c7ca99

Browse files
committed
Update README.md with correct travis icon
1 parent ee0185f commit 8c7ca99

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This also provides a simple `face_recognition` command line tool that lets
1111
you do face recognition on a folder of images from the command line!
1212

1313
![](https://img.shields.io/pypi/v/face_recognition.svg)
14-
![](https://travis-ci.org/ageitgey/face_recognition)
14+
![](https://travis-ci.org/ageitgey/face_recognition.svg?branch=master)
1515

1616
## Features
1717

@@ -63,29 +63,29 @@ results = face_recognition.compare_faces([biden_encoding], unknown_encoding)
6363

6464
## Installation
6565

66-
Python 3 is fully supported. Python 2 should also work. Only macOS and
66+
Python 3 / Python 2 are fully supported. Only macOS and
6767
Linux are tested. I have no idea if this will work on Windows.
6868

69-
1. First, install the required machine learning models using `pip3` (or `pip2` for Python 2):
69+
Step 1: Install the required machine learning models using `pip3` (or `pip2` for Python 2):
7070

7171
```bash
7272
pip3 install git+https://github.com/ageitgey/face_recognition_models
7373
```
7474

75-
2. Then you can install this module from pypi using `pip3` (or `pip2` for Python 2):
75+
Step 2: Install this module from pypi using `pip3` (or `pip2` for Python 2):
7676

7777
```bash
7878
pip3 install face_recognition
7979
```
8080

81-
NOTE: It's very likely that you will run into problems when pip tries to compile
81+
IMPORTANT NOTE: It's very likely that you will run into problems when pip tries to compile
8282
the `dlib` dependency. If that happens, check out this guide to installing
83-
dlib from source instead to fix the error:
83+
dlib from source (instead of from pip) to fix the error:
8484

8585
[How to install dlib from source](https://gist.github.com/ageitgey/629d75c1baac34dfa5ca2a1928a7aeaf)
8686

8787
After manually installing `dlib`, try running `pip3 install face_recognition`
88-
again.
88+
again to complete your installation.
8989

9090
## Usage
9191

0 commit comments

Comments
 (0)