Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

installation.rst 1.2 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
  1. .. highlight:: shell
  2. ============
  3. Installation
  4. ============
  5. Stable release
  6. --------------
  7. To install Face Recognition, run this command in your terminal:
  8. .. code-block:: console
  9. $ pip3 install face_recognition
  10. This is the preferred method to install Face Recognition, as it will always install the most recent stable release.
  11. If you don't have `pip`_ installed, this `Python installation guide`_ can guide
  12. you through the process.
  13. .. _pip: https://pip.pypa.io
  14. .. _Python installation guide: http://docs.python-guide.org/en/latest/starting/installation/
  15. From sources
  16. ------------
  17. The sources for Face Recognition can be downloaded from the `Github repo`_.
  18. You can either clone the public repository:
  19. .. code-block:: console
  20. $ git clone git://github.com/ageitgey/face_recognition
  21. Or download the `tarball`_:
  22. .. code-block:: console
  23. $ curl -OL https://github.com/ageitgey/face_recognition/tarball/master
  24. Once you have a copy of the source, you can install it with:
  25. .. code-block:: console
  26. $ python setup.py install
  27. .. _Github repo: https://github.com/ageitgey/face_recognition
  28. .. _tarball: https://github.com/ageitgey/face_recognition/tarball/master
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...