You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
gilfree
added
bug
Something that is supposed to be working; but isn't
triage
Needs triage (eg: priority, bug/not-bug, and owning component)
labels
Nov 1, 2021
Search before asking
Ray Component
Ray Core
What happened + What you expected to happen
After installing nightly, ray start fails to start dashboard because of missing import aiohttp.signals.
I ran
And got:
ImportError: Not all Ray Dashboard dependencies were found. To use the dashboard please install Ray using
pip install ray[default]
.When manually trying to do:
python -c 'import ray.dashboard.optional_deps'
I get
ModuleNotFoundError: No module named 'aiohttp.signals'
Which is expected as recently
aiohttp
released version 3.8 which lacks the above import:see: aio-libs/aiohttp#5293
Versions / Dependencies
nightly ray on ubuntu 18.04 python 3.7
Reproduction script
#! /bin/bash
set -x
python3 -mvenv venv
venv/bin/python -m pip install -U pip
venv/bin/python -m pip install --trusted-host s3-us-west-2.amazonaws.com -U 'ray[default] @ https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-2.0.0.dev0-cp37-cp37m-manylinux2014_x86_64.whl'
venv/bin/python -c 'import ray.dashboard.optional_deps'
RAY_OBJECT_STORE_ALLOW_LOW_STORAGE=1 ray start --head --include-dashboard 1 --port 0
Anything else
No response
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: