简体   繁体   中英

Modin - ModuleNotFoundError: No module named 'ray'

I'm trying to use Modin on Databricks and getting this error

I've tried both pip install modin[all] and pip install modin[ray]

Firstly, the installation takes 15 minutes, which is weird.

After installing, I'm doing

import modin.pandas as md
df = md.read_parquet('s3://path/to/file')

Getting this error

ModuleNotFoundError: No module named 'ray'

I have also tried setting os.environ["MODIN_ENGINE"] = "ray"

Try

pip install ray

May be this will help you.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM