无法安装 matplotlib

无法安装 matplotlib

pip无法安装matplotlib。为什么它不起作用?

当我这样做时它就挂了pip install matplotlib

Collecting matplotlib
  Using cached matplotlib-1.5.1.tar.gz

最终安装它的解决方法是从 sourceforge 下载档案。我将再次尝试以验证软件包是否存在问题。

在此处输入图片描述

答案1

我遇到了这个问题,我刚刚解决了,请先尝试手动安装依赖项

cycler>=0.10       
kiwisolver>=1.0.1  
python-dateutil>=2.7 
numpy>=1.16        
pillow>=6.2.0       
pyparsing>=2.2.1   
six 

对我来说,它基于 armv7 架构,并且我从 requirements.txt 安装,它会挂在 matplotlib 的安装上,但是当我注释掉 matplotlib 并从 requirements.txt 安装其他所有内容(包括上面列出的库)时,它不再挂起。

相关内容