install via source code

This commit is contained in:
Sefik Ilkin Serengil 2023-01-27 14:17:41 +00:00 committed by GitHub
parent df30b7d32b
commit 49c711532e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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