[Bug] Ray 1.8.0 [Default] does not contain dashboard when installing with pip3 on ubuntu server
See original GitHub issueSearch before asking
- I searched the issues and found no similar issues.
Ray Component
Ray Clusters
What happened + What you expected to happen
I installed ray using
“pip3 install ray [default]
”
But it shows me the following error that I show in the image, the first ray installation was using the sentence that I show in quotes but it still throws me an error that indicates "Not all Ray Dashboard dependencies were found. To use the dashboard please install Ray using pip install ray [default]
. "
This even though I have used ray [default] and also decided to use “sudo pip3 install ray [default]
”
But nothing works and I really need the dashboard
Versions / Dependencies
Ray 1.8.0 [Default]
Reproduction script
ray start --head --port=10000 --include-dashboard=true --dashboard-host=192.168.1.215 --dashboard-port=7777 --num-cpus=16
Anything else
No response
Are you willing to submit a PR?
- Yes I am willing to submit a PR!
Issue Analytics
- State:
- Created 2 years ago
- Comments:12 (5 by maintainers)
Top Results From Across the Web
Not all Ray CLI dependencies were found - Stack Overflow
In Ray 1.4+, the Ray CLI, autoscaler, and dashboard will only be usable via pip install 'ray[default]' . Please update your install command....
Read more >Installing Ray — Ray 2.2.0 - the Ray documentation
Install Ray with support for the dashboard + cluster launcher pip install -U "ray[default]" # Install Ray with minimal dependencies # pip install...
Read more >Using pip3 to install Python3 modules
Installing a virtualenv is important if you want to run pip. Normally, pip attempts to install in the server's default Python system folder....
Read more >ray - PyPI
Ray runs on any machine, cluster, cloud provider, and Kubernetes, and features a growing ecosystem of community integrations. Install Ray with: pip install...
Read more >pipenv Documentation - manpages.ubuntu!
If you do not have Python, please install the latest 3.x version from python.org ... While pip can install Python packages, Pipenv is...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I eventually realized
pip install ray
!=pip install "ray[default]"
The
"ray[default]"
version includes necessary dependencies for things like Ray’s Dashboard. Try installing that, which is okay to do on top of a regular install, because it just adds more dependencies. Good luck!pip install aiohttp==3.7.4 you can solve this issue