在執行項目時,遇到matplotlib版本不兼容問題
版本過低會出現:
ImportError: cannot import name '_backports' from 'matplotlib.cbook'
版本過高會出現:
ImportError: dlopen: cannot load any more object with static TLS
解決方法
pip uninstall matplotlib
pip install matplotlib==3.0.3
問題解決