Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Not all Ray CLI dependencies were found

Tags:

python

ray

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.

like image 742
Farhang Amaji Avatar asked May 12 '21 20:05

Farhang Amaji


2 Answers

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]".

like image 83
Sang Avatar answered Oct 17 '22 11:10

Sang


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

like image 42
cansucandan Avatar answered Oct 17 '22 12:10

cansucandan