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
I've installed modin-dask 0.18.0. I'm trying the code block below in VS Code for Windows 11.
import os
os.environ["MODIN_ENGINE"] = "dask" # Modin will use Dask
import modin.pandas as pd
import random
leng = 1
data = { 'a': (random.randint(0, 100) for _ in range(leng)),
'b': (random.randint(2, 200) for _ in range(leng)) }
df = pd.DataFrame(data)
The Debug Console displays the error below:
UserWarning: Port 8787 is already in use.
Perhaps you already have a cluster running?
Hosting the HTTP server on port 55998 instead
2023-07-02 15:40:48,574 - distributed.nanny - ERROR - Failed to start process
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I've installed modin-dask 0.18.0. I'm trying the code block below in VS Code for Windows 11.
The Debug Console displays the error below:
What should I change? Thanks.
Beta Was this translation helpful? Give feedback.
All reactions