Skip to content

Commit

Permalink
docs: Add SSL verification error mitigation (#821)
Browse files Browse the repository at this point in the history
Add SSL verification error mitigation

Signed-off-by: Anastas Stoyanovsky <[email protected]>
  • Loading branch information
anastasds authored Jan 28, 2025
1 parent 6882e6c commit 5139b48
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,12 @@ This is a collection of FAQ collected from the user questions on <https://github

- Update to the latest version of [certifi](https://pypi.org/project/certifi/), i.e. `pip install --upgrade certifi`
- Use [pip-system-certs](https://pypi.org/project/pip-system-certs/) to use the latest trusted certificates on your system.
- Set environment variables `SSL_CERT_FILE` and `REQUESTS_CA_BUNDLE` to the value of `python -m certifi`:
```
CERT_PATH=$(python -m certifi)
export SSL_CERT_FILE=${CERT_PATH}
export REQUESTS_CA_BUNDLE=${CERT_PATH}
```


??? question "Which OCR languages are supported?"
Expand Down

0 comments on commit 5139b48

Please sign in to comment.