I have installed ray module and I get this warning all the time FutureWarning: Not all Ray CLI dependencies were found. In Ray 1.4+, the Ray CLI, autoscaler, and dashboard will only be usable via
pip install 'ray[default]'. Please update your install command. (pid=None) "update your install command.", FutureWarning)
I updated my pip because of "update your install command."
but I still get it constantly.
Asked
Active
Viewed 4,019 times
7

Farhang Amaji
- 742
- 11
- 24
2 Answers
5
Try pip install "ray[default]"
! Recently, Ray made its original dependency (pip install ray
) as a minimal core library that doesn't include autoscaler, dashboard, and metrics dependencies. If you'd like to use all features, you should use pip install "ray[default]"
.

Sang
- 885
- 5
- 4
-
thanx but right now I cant tell is your solution working or not because the warning disappeared probably by it's own if I had not done anything without knowing it – Farhang Amaji May 17 '21 at 04:06
-
WARNING: ray 1.8.0 does not provide the extra 'default' – smbanaei Nov 14 '21 at 11:21
-
I'm also not using any of that stuff (autoscaler, dashboard, metrics), but still getting the warning/error message. – Will Gordon Nov 19 '21 at 17:56
2
You should just write pip install "ray[default]"
. It works.

cansucandan
- 21
- 1
-
And what should be the syntax for requirements.txt ou pyproject.toml? – avibrazil Aug 24 '21 at 15:38
-