AttributeError: partially initialized module ‘charset_normalizer‘ has no attribute ‘md__mypyc‘

错误提示如下:

AttributeError: partially initialized module 'charset_normalizer' has no attribute 'md__mypyc' (most likely due to a circular import)

GitHub上找到的有效解决方法,链接如下:
AttributeError: partially initialized module ‘charset_normalizer’ has no attribute ‘md__mypyc’ (most likely due to a circular import) · Issue #242 · microsoft/visual-chatgpt · GitHub

提示需要更新【Updating the charset-normalizer to latest version works for me】

pip install --force-reinstall charset-normalizer==3.1.0

至此,问题解决~~~

你可能感兴趣的:(python,pip,Error)