我收到以下错误消息
ImportError: cannot import name 'style'
当我跑
时from matplotlib import style
我正在使用ubuntu并尝试使用python3和python运行它。
我安装了matplotlib的版本(1.3.1),这是apt-get
安装的最新版本。我已经安装了numpy并使用python3安装了matplotlib。没有快乐。
还有其他人遇到过同样的问题吗?
答案 0 :(得分:5)
sudo pip install --upgrade matplotlib
诀窍。虽然在我的机器上它最初抛出了一些问题。对于有这个问题的其他人来说,这个帖子有很多有用的建议
答案 1 :(得分:2)
您也可以使用pip install --user --upgrade matplotlib
使用sudo
被认为是不安全的,因为您允许pip以root身份从Internet执行代码。
使用--user:
..在您的主目录中创建pip安装包,而不需要任何特殊权限Purpose of --user
有关此内容的更多信息,请访问:What are the risks of running 'sudo pip'?