RequestsDependencyWarning: urllib3 (2.0.7) or chardet (None)2024/3/24 / 1 min readView more blogs with the tag pythonTable 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で解決しました。