+1 vote
in Programming Languages by (56.8k points)

When I use the pandas module in my code, I get the following warning message:

 DeprecationWarning: 

Pyarrow will become a required dependency of pandas in the next major release of pandas (pandas 3.0),

(to allow more performant data types, such as the Arrow string type, and better interoperability with other libraries)

but was not found to be installed on your system.

If this would cause problems for you,

please provide us feedback at https:/github.com/pandas-dev/pandas/issues/54466

Is there any way to fix this warning message?

1 Answer

+2 votes
by (351k points)
selected by
 
Best answer

It seems that you have not installed the "pyarrow" module on your system and hence the "pandas" module is giving this warning message.

To fix this warning message, install the pyarrow module by running the following command on the terminal:

pip install pyarrow


...