如何为 python 3.9 的 MacOS 解决 "Preparing wheel metadata ... error" 这个错误

How to solve "Preparing wheel metadata ... error" this error for MacOS for python 3.9

我正在尝试使用带有 python 3.9 的 pip3 来安装模块...我阅读了 windows 的回复,建议安装 VisualStudio,因为我们需要一个好的 C++ 编译器

我使用 macOS

我添加了输入和错误消息以便更好地理解

输入:

rohansaswade@Rohans-MBP ~ % pip3 install numpy

输出:

 Collecting numpy
  Using cached numpy-1.19.2.zip (7.3 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... error
    ERROR: Command errored out with exit status 1:

我没有提到完整的错误输出,因为它似乎无关紧要,但如果您需要它来帮助我,请发表评论。

我使用 macOS Catalina 10.15.7 和 python 3.9

我遇到了同样的问题。 就我而言,尽管很耗时,但以下步骤有所帮助。

#准备
pip install cython
git clone https://github.com/numpy/numpy.git

#步骤
cd numpy
python setup.py build
python setup.py install

希望对你也有用。