Farhang Amaji
Farhang Amaji

Reputation: 973

Not all Ray CLI dependencies were found

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

Answers (2)

cansucandan
cansucandan

Reputation: 21

You should just write pip install "ray[default]" . It works.

Upvotes: 2

Sang
Sang

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

Related Questions