安装matplotlib X86失败

问题描述 投票:0回答:1

我无法在 Python 3.11 X86 上安装 matplotlib。我收到一条错误消息:

error: Failed to download any of the following: ['https://downloads.sourceforge.net/project/freetype/freetype2/2.6.1/freetype-2.6.1.tar.gz', 
 'https://download.savannah.gnu.org/releases/freetype/freetype-2.6.1.tar.gz', 
 'https://download.savannah.gnu.org/releases/freetype/freetype-old/freetype-2.6.1.tar.gz'].  
Please download one of these urls and extract it into 'build/' at the top-level of the source repository.
  [end of output]  

注意:此错误源自子进程,可能不是 pip 的问题。

ERROR: Failed building wheel for matplotlib
ERROR: Could not build wheels for matplotlib, which is required to install pyproject.toml-based projects

pip install matplotlib

请不要康达

python matplotlib freetype
1个回答
0
投票

看起来有人在这里遇到了类似的问题:Error attempts to install matplotlib in Windows

您是否尝试过像这样使用

--pre
标志:
pip install matplotlib --pre

看起来可能是当前最新版本的 matplotlib 不支持 python3.10,这可能是导致问题的原因。

© www.soinside.com 2019 - 2024. All rights reserved.