Reputation: 973
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.
Upvotes: 7
Views: 4649
Reputation: 925
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]"
.
Upvotes: 5