After following exception message to install modin[ray], only pandas is downgraded..
See original GitHub issueWhen i have the following installed:
modin: 0.15.3
pandas: 1.4.4
ray: 3.0.0.dev0
I get this error:
Exception has occurred: ImportError
Please `pip install modin[ray]` to install compatible Ray version (>=1.4.0,<1.13.0).
after installing modin[ray], the only library change is a downgrade of pandas to 1.4.2:
modin: 0.15.0
pandas: 1.4.2
ray: 3.0.0.dev0
Is this expected? Why would the exception complain about a compatible version, but leave the same version of ray installed and only downgrade pandas? I am on the WINDOWS 10 OS.
Issue Analytics
- State:
- Created a year ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
After following exception message to install modin[ray], only pandas ...
after installing modin [ray], the only library change is a downgrade of pandas to 1.4.2: modin: 0.15.0 pandas: 1.4.2 ray: 3.0.0.dev0. Is this...
Read more >big data manipulation · Issue #2360 · modin-project ... - GitHub
Hi I have a big data to manipulate and I saw that Modin was a solution to speedup calculation. I tried to install...
Read more >Error while importing library "modin" in Python 3.6
I followed the below steps to install Modin using Ray execution engine. Install Modin dependencies and Ray to run on Ray -
Read more >Dask error when running modin.pandas
I'm trying to run modin.pandas on a Windows 10 machine using Dask. I'm developing using PyCharm.I installed all the packages, but when I...
Read more >Getting started with Ray in Python! - Deepnote
In Ray 1.4+, the Ray CLI, autoscaler, and dashboard will only be usable via `pip install 'ray[default]'`. Please update your install command ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Once we get #5037 in.
cc @vnlitvinov
We indeed limit Ray versions as you’ve stated above. As for why
pip install modin[ray]
is not downgrading Ray I’m not sure, it might be a bug inpip
itself as oursetup.py
clearly lists the requirement: https://github.com/modin-project/modin/blob/0.15.3/setup.py#L14That said, we should be making
0.16
really soon which will be lifting Ray limitations.Meanwhile you can run
pip install ray[default]==1.12.1
to force correct Ray version in your environment.