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