“安装pyarrow时”提升RuntimeError('32位Windows不支持')“

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

每当我尝试在我的电脑上安装pyarrow时,我都会收到此错误,它是64位,所以我不理解它:

raise RuntimeError('Not supported on 32-bit Windows')
  RuntimeError: Not supported on 32-bit Windows
  ----------------------------------------
  ERROR: Failed building wheel for pyarrow
ERROR: Could not build wheels for pyarrow which use PEP 517 and cannot be installed directly

我已经更新了pip并安装了更多的软件包而没有任何问题。

apache-spark pycharm parquet pyarrow
1个回答
2
投票

PyArrow尝试构建32位版本的原因当然是您使用的是32位Python安装。

当您运行解释器提示时,64位Python安装可能会显示类似的内容(请注意“MSC v.1915 64位(AMD64)”,表示它是64位版本):

c:\>python
Python 3.7.2 (default, Jan  2 2019, 17:07:39) [MSC v.1915 64 bit (AMD64)]
Type "help", "copyright", "credits" or "license" for more information.
>>> 
© www.soinside.com 2019 - 2024. All rights reserved.