1

I am trying to install pyarrow.io and pyarrow.parquet to be able to read parquet files and convert them to jsons.

When I do :

pip install pyarrow.io --user

I get:

Collecting pyarrow.io
  ERROR: Could not find a version that satisfies the requirement pyarrow.io (from versions: none)
ERROR: No matching distribution found for pyarrow.io

Is there anything else I can try? Thank you so much!

1 Answers1

2

try:

pip install pyarrow
# OR
python -m pip install pyarrow

see:

jmunsch
  • 22,771
  • 11
  • 93
  • 114