Update to resolve install command warning

Hello,

I have done “pip install -U ray” in my conda env and run the below command. Can you please suggest how to fix below warning in ray 1.3.0

$ ray up -y -v ray/python/ray/autoscaler/kubernetes/example-full.yaml --no-config-cache
/home/asm/anaconda3/envs/ray130/lib/python3.7/site-packages/ray/autoscaler/_private/cli_logger.py:61: 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.
“update your install command.”, FutureWarning)

Could you try running pip install -U 'ray[default]' ?

Thank you, I confirm that running pip install -U ‘ray[default]’ makes the warning go away, should this be added to documentation?

Ah I think it is already?

https://docs.ray.io/en/master/cluster/quickstart.html#setup

ok, thanks, I skipped this section since i think it says AWS / other cloud providers and has boto library , I am running all my experiments with minikube on VM which needed the installation step that you helped me with