5

I get this error whenever I try to install pyarrow on my PC. It is 64bit so I don't understand it:

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

I have pip updated and have installed many more packages without problems.

Gino Mempin
  • 25,369
  • 29
  • 96
  • 135
WorkDoubts
  • 63
  • 1
  • 4

1 Answers1

17

The reason PyArrow is trying to build a 32-bit version is certainly that you are using a 32-bit Python installation.

A 64-bit Python installation would probably show you something like this when you run the interpreter prompt (note the "MSC v.1915 64 bit (AMD64)" which indicates it's a 64-bit version):

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.
>>> 
Antoine P.
  • 4,181
  • 1
  • 24
  • 17
  • If you still have problems after installing Python 64 bit on Windows, make sure to remove all other versions of Python and reinstall pipenv (if applicable) – Fenio Jun 24 '20 at 07:53