【发布时间】:2021-04-10 21:18:18
【问题描述】:
我使用的是运行 Big Sur 11.1 的 MacBook m1,我已经安装了 Xcode-commandline-tools 12.3 版,它已经安装了 python3.8.5 和 pip3 .python3 和 pip 是本机应用程序,即它们在 ARM 中运行
pip3版本20.3.3
python3版本3.8.5
setuptools版本51.0.0
wheel版本0.36.2
当我输入python3 -m pip install pandas
输出是:
Defaulting to user installation because normal site-packages is not writeable
Collecting pandas
Downloading pandas-1.2.0.tar.gz (5.4 MB)
|████████████████████████████████| 5.4 MB 150 kB/s
Installing build dependencies ... error
还有一个很长的错误列表,大约 30,000 行 (only last few lines)
和
pip3 list 输出是
cppy 1.1.0
kiwisolver 1.3.1
numpy 1.20.0rc1
pip 20.3.3
pyparsing 2.4.7
python-dateutil 2.8.1
setuptools 51.0.0
six 1.15.0
wheel 0.36.2
熊猫还不支持还是我做错了,Matplotlib 也是如此。
【问题讨论】:
标签: python-3.x pandas macos