diff --git a/README.md b/README.md
index 5cefb7b..eaf24c0 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,8 @@
-[](https://pepy.tech/project/deepface)
+[](https://pepy.tech/project/deepface)
+[](https://anaconda.org/conda-forge/deepface)
[](https://github.com/serengil/deepface/stargazers)
[](https://github.com/serengil/deepface/blob/master/LICENSE)
[](https://www.patreon.com/serengil?repo=deepface)
@@ -20,14 +21,20 @@ Deepface is a lightweight [face recognition](https://sefiks.com/2018/08/06/deep-
Experiments show that human beings have 97.53% accuracy on facial recognition tasks whereas those models already reached and passed that accuracy level.
-## Installation [](https://pypi.org/project/deepface/)
+## Installation [](https://pypi.org/project/deepface/) [](https://anaconda.org/conda-forge/deepface)
-The easiest way to install deepface is to download it from [`PyPI`](https://pypi.org/project/deepface/). It's going to install the library itself and its prerequisites as well. The library is mainly powered by TensorFlow and Keras.
+The easiest way to install deepface is to download it from [`PyPI`](https://pypi.org/project/deepface/). It's going to install the library itself and its prerequisites as well.
-```python
+```shell
pip install deepface
```
+DeepFace is also available at [`Conda`](https://anaconda.org/conda-forge/deepface).
+
+```shell
+conda install deepface
+```
+
Then you will be able to import the library and use its functionalities.
```python