Lukas Ellemunt
Lukas Ellemunt
I tried to recreate the plot using plotly.graph_objects like this: ``` fig = make_subplots(rows=2, cols=2, row_heights=[1,2], shared_xaxes=True, shared_yaxes=False) color_dict = { 5: '#330C73', 6: '#EB89B5', 7: '#4F89B5', } for index_module,...
I had the same problem and figured out a solution that worked for me: in your `devcontainer.json` file, add this to make sure the dev container uses the host network...
I had the same problem in zsh with the command `DIVE_VERSION=$(curl -sL "https://api.github.com/repos/wagoodman/dive/releases/latest" | grep '"tag_name":' | sed -E 's/.*"v([^"]+)".*/\1/') curl -OL https://github.com/wagoodman/dive/releases/download/v${DIVE_VERSION}/dive_${DIVE_VERSION}_linux_amd64.deb sudo apt install ./dive_${DIVE_VERSION}_linux_amd64.deb` try running the...