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
In order to successfully install examples using Docker I did the following changes:
There seems to be missing step which clones mli-resources GitHub repository. Perhaps RUN git clone https://github.com/h2oai/mli-resources.git should be added to Dockerfile (I cloned repo manually).
Jupyter refuses to start under root - consider adding --allow-root parameter: docker run -i -t -p 8888:8888 <image_id> /bin/bash -c "/opt/conda/bin/conda install jupyter -y --quiet && /opt/conda/bin/jupyter notebook --notebook-dir=/mli-resources --ip='*' --port=8888 --no-browser --allow-root" and/or suggest to run it under a normal user.
Perhaps it would be worth to suggest user to use URL provided by Jupyter after it starts - it contains auth token (README.md, step 9.).
The text was updated successfully, but these errors were encountered:
@dvorka sorry this is all related to a very rushed, half-assed upgrade to py 3.6 by yours truly. I'm going through the notebooks 1-by-1 one right now. Give me a few hours ... :face_palm:
I'm at "works for me" - so I dare not close this yet. This was a mess ... I wasn't expecting it to be this difficult to go from py35 to py36 (I do this to use the shap package).
@navdeep-GIF you have time - or we get more complaints - can you remove your old docker image, rebuild from the new dockerfile, and run all the notebooks, including the ones for comparing explanations ... it takes forever. sorry. If you get no errors we can probably close.
In order to successfully install examples using Docker I did the following changes:
mli-resources
GitHub repository. PerhapsRUN git clone https://github.com/h2oai/mli-resources.git
should be added toDockerfile
(I cloned repo manually).--allow-root
parameter:docker run -i -t -p 8888:8888 <image_id> /bin/bash -c "/opt/conda/bin/conda install jupyter -y --quiet && /opt/conda/bin/jupyter notebook --notebook-dir=/mli-resources --ip='*' --port=8888 --no-browser --allow-root"
and/or suggest to run it under a normal user.README.md
, step 9.).The text was updated successfully, but these errors were encountered: