Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
导入 matplotlib.pyplot 时出现此错误。但是我检查了使用安装的六的版本pip list,它返回版本 1.9.0。当我检查时six.__version__,它返回 1.2.0。
pip list
six.__version__
任何人都可以帮助我吗?
通过发出以下命令检查您是否使用了正确pip的 Python 版本:
pip
pip -V
该命令将显示pip正在使用的 Python 版本和包的路径pip。
某处可能存在错误,但快速而肮脏的解决方法如下:
pip install six==1.8.0
我遇到了同样的事情,原因是我的 PYTHONPATH 目录中剩下的 Six.pyo / Six.pyc 是导入的而不是安装的版本。