You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, in theory, it is possible to have a pyarrow installation without pyarrow.compute support (it's an optional component when building). In that case the import pyarrow.compute as pc import will fail giving a slightly confusing error message + it will fail on a basic import of pandas (even without using any pyarrow functionality).
The text was updated successfully, but these errors were encountered:
We currently check if pyarrow is available (and a sufficiently recent version), and if that's the case, simply import
pyarrow.compute
:pandas/pandas/core/arrays/string_arrow.py
Lines 63 to 65 in 3fe8e24
However, in theory, it is possible to have a pyarrow installation without
pyarrow.compute
support (it's an optional component when building). In that case theimport pyarrow.compute as pc
import will fail giving a slightly confusing error message + it will fail on a basic import of pandas (even without using any pyarrow functionality).The text was updated successfully, but these errors were encountered: