jgomezdans / geog_docker

Docker image for Geospatial Python teaching
GNU General Public License v3.0
4 stars 1 forks source link

Ensure extensions are allowed even if not "safe" for notebook version #32

Closed jgomezdans closed 4 years ago

jgomezdans commented 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

jgomezdans commented 4 years ago

Weird, no common.json file, could basically create it on the fly with ...

RUN echo '{"nbext_hide_incompat": true}' >> $HOME/nbconfig/common.json