Skip to main content

Command Palette

Search for a command to run...

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

Updated
1 min read
RequestsDependencyWarning: Unable to find acceptable character detection dependency (chardet or charset_normalizer)
A

I am a Software Developer, mainly involved in Software Development of JAVA-enabled web applications.

Problem

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

/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.

pip install chardet
2.1K views