From 49c711532e62690683920e8c77fa07c39766f7a0 Mon Sep 17 00:00:00 2001 From: Sefik Ilkin Serengil Date: Fri, 27 Jan 2023 14:17:41 +0000 Subject: [PATCH] install via source code --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dae9818..fe79a29 100644 --- a/README.md +++ b/README.md @@ -28,12 +28,20 @@ The easiest way to install deepface is to download it from [`PyPI`](https://pypi $ pip install deepface ``` -DeepFace is also available at [`Conda`](https://anaconda.org/conda-forge/deepface). You can alternatively install the package via conda. +Secondly, DeepFace is also available at [`Conda`](https://anaconda.org/conda-forge/deepface). You can alternatively install the package via conda. ```shell $ conda install -c conda-forge deepface ``` +Thirdly, you can install deepface from its source code. + +```shell +$ git clone https://github.com/serengil/deepface.git +$ cd deepface +$ pip install -e . +``` + Then you will be able to import the library and use its functionalities. ```python