RequestsDependencyWarning: urllib3 (2.0.7) or chardet (None) 2024年3月24日 / 1 min read View more blogs with the tag python Table of Contents #問題 #解決方法 問題 requests を含む Python コードを実行しようとしたところ、以下のエラーが表示されました。 Terminal windowRequestsDependencyWarning: urllib3 (2.0.7) or chardet (None)/charset_normalizer (2.0.11) doesn't match a supported version! 解決方法 pip install -U urllib3 requestsで解決しました。