http://verilog.blog.shinobi.jp/python/matplotlib%E3%81%AE%E3%83%90%E3%83%BC%E3%82%B8%E3%83%A7%E3%83%B3%E3%82%A2%E3%83%83%E3%83%97%E5%A4%B1%E6%95%97%E3%81%A8%E3%81%9D%E3%81%AE%E5%9B%9E%E9%81%BF%E6%96%B9%E6%B3%95matplotlibのバージョンアップ失敗とその回避方法
matplotlibのバージョンを上げようとpython -m pip install --upgrade matplotlibを実行したら以下のエラーが出た。
ERROR: Cannot uninstall 'certifi'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
stackoverflowの
この質問を参考に、--ignore-installed certifiをつけて
python -m pip install --upgrade matplotlib --ignore-installed certifiを実行したら成功した。
[0回]
PR