Closed jgomezdans closed 4 years ago
From ucl-eo/geog0111#3
I tracked it down (again) to:
../.jupyter/nbconfig/common.json: "nbext_hide_incompat": false
so cat you put in a filter to set that true ... its the only false there, so a sed 's/false/true/g' would do it but you could be more subtle
Weird, no common.json file, could basically create it on the fly with ...
common.json
RUN echo '{"nbext_hide_incompat": true}' >> $HOME/nbconfig/common.json
From ucl-eo/geog0111#3
I tracked it down (again) to:
../.jupyter/nbconfig/common.json: "nbext_hide_incompat": false
so cat you put in a filter to set that true ... its the only false there, so a sed 's/false/true/g' would do it but you could be more subtle