Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error Installing streamlit It says "ERROR: Could not build wheels for pyarrow which use PEP 517 and cannot be installed directly"

When I try pip install streamlit it fails with the error message:

ERROR: "Could not build wheels for pyarrow which use PEP 517 and cannot be installed directly"

I tried installing pip install pyarrow directly but still gives the same error message

like image 243
Ijegwa Acheme Avatar asked Jul 20 '20 12:07

Ijegwa Acheme


People also ask

Could not build wheels for which use PEP 517?

To Solve ERROR: Could not build wheels for scipy which use PEP 517 and cannot be installed directly Error Just update your pip and your error will be solve. pip3 install –upgrade pip. this error solved just after update pip with setuptools wheel just run below command. pip install –upgrade pip setuptools wheel.


1 Answers

In my case the problem was related to Python version. More specifically I noticed in error logs:
RuntimeError: Not supported on 32-bit Windows

So then I installed Python 3.8.6 (x64 version) instead of x32

enter image description here

and the problem was solved with

pip install pyarrow

like image 200
gmavridakis Avatar answered Sep 18 '22 07:09

gmavridakis