import modin.pandas as pd
I am importing modin.pandas library in my windows 10 machine but getting error
"AttributeError: module 'ray' has no attribute 'utils'"
Anything missed while installing modin library?
"AttributeError: module 'ray' has no attribute 'utils'"
It looks like, you should be able to fix the issue if you just install the 1.1 version of ray, by doing the following :
pip install ray==1.1
The modin.pandas creators haven't release support for versions of ray greater then 1.1.
Here is the discussion thread on github : https://github.com/modin-project/modin/issues/3059
Check which version of ray
you have; ray.utils
used to be called ray.experimental
.
You'll either need to upgrade version of the module you're using that has ray
as a dependency (meaning the module currently uses the out-of-date version of ray
), or downgrade the version of the ray
(to be compatible with the module you're using).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With