Hi,
I've installed pyarrow 11.0.0 on Windows and Linux (via pip)
Things work as in the documentation when I used the Linux installation to use
GcsFileSystem.
However, in the windows distribution, it seems the distribution has not been
built with support for the GCS File System. So I'm getting the error:
import pyarrow.parquet as pq
sample_path = f"gs://{my_bucket}"
parquet_file = pq.ParquetFile(sample_path)
Throws the error:
ImportError: The pyarrow installation is not built with support for
'GcsFileSystem'
What is the reason for this?
Thank you,
Cali