25 lines
261 B
Markdown
25 lines
261 B
Markdown
|
## Install
|
||
|
|
||
|
### OS package requirements
|
||
|
|
||
|
Alpine:
|
||
|
|
||
|
```
|
||
|
apk add openldap-dev
|
||
|
```
|
||
|
|
||
|
### Python requirements
|
||
|
|
||
|
If you prefer using a venv, use:
|
||
|
|
||
|
```
|
||
|
python -m venv venv
|
||
|
. ./venv/bin/activate
|
||
|
```
|
||
|
|
||
|
Then install the requirements
|
||
|
|
||
|
```
|
||
|
pip install -r requirements.txt
|
||
|
```
|