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

Wor*_*bts 3 pycharm apache-spark parquet pyarrow

每当我尝试在PC上安装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
Run Code Online (Sandbox Code Playgroud)

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

Ant*_* P. 8

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.
>>> 
Run Code Online (Sandbox Code Playgroud)