关于报出 “from cchardet import _cchardet ImportError: DLL load failed: 找不到指定的模块”异常的解决办法

一、存在问题

python版本是3.7.5
安装的cchardet版本是2.1.7
在idle中输入 import cchardet,运行报出以下错误:

   from cchardet import _cchardet ImportError: DLL load failed: 找不到指定的模块。

原因可能是该模块某个地方与python不兼容。

二、解决办法

输入pip install cchardet==2.1.5安装后解决。

你可能感兴趣的:(python常见库安装方法,python)