# RequestsDependencyWarning: Unable to find acceptable character detection dependency (chardet or charset_normalizer)

# Problem

The problem occurs when using the Python requests library, the chardet library is not installed.

```bash
/Users/adacheng/Library/Python/3.9/lib/python/site-packages/requests/__init__.py:86: RequestsDependencyWarning: Unable to find acceptable character detection dependency (chardet or charset_normalizer).
```

# Solution

Install the **chardet** library.

```bash
pip install chardet
```
