PermissionsError: You are trying to take an action in a Coiled account/team of which you aren't a member

I get that running the dask tutorial where I get to this cell:

import coiled

#coiled.login(api_token=)

cluster = coiled.Cluster(
    n_workers=20,
    workspace="dask-tutorials",
)

client = cluster.get_client()

Hi,

This tutorial uses Coiled Cloud resources, so you probably need to be a member of this workspace to run it. I guess if you participate to a session of this tutorial, Coiled folks will give you access, but it sounds normal you cannot access all these resources by default. You can create a LocalCluster instead of a Coiled one.

You also have a Dask tutorial that you can run in binder.

You can just remove the workspace argument and it will your default workspace

1 Like