https://datawokagaku.com/startjupyternote/
上記のサイト参考にしてdockerで環境構築しようとしているのですが、
http://localhost:8888/lab
にアクセスすると
Cannot find template: "index.html"
In "/Users/msugino/opt/anaconda3/share/jupyter/lab/static"
このようなエラーが出てしまい
どうしたら良いかわかりません。
どなたか教えていただけますでしょうか。よろしくお願いします。
Note
pipenvで作った環境ではjyupterlabにアクセスすることができるのですが、
何かコンフリクトしているのでしょうか。
最近Anacondaをローカルからアンインストールしたばかりです。
Dockerfile
1FROM ubuntu:latest 2 3# update 4RUN apt-get -y update && apt-get -y upgrade 5 6# install basic packages 7RUN apt-get install -y sudo wget bzip2 8RUN apt-get install vim -y 9 10###install anaconda3 11WORKDIR /opt 12# download anaconda package 13# archive -> https://repo.continuum.io/archive/ 14RUN wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh 15 16RUN /bin/bash /opt/Anaconda3-2019.10-Linux-x86_64.sh -b -p /opt/anaconda3 17 18RUN rm -f Anaconda3-2019.10-Linux-x86_64.sh 19ENV PATH /opt/anaconda3/bin:$PATH 20 21# update pip and conda 22RUN pip install --upgrade pip 23 24WORKDIR / 25RUN mkdir /work 26 27# install jupyterlab 28ENTRYPOINT ["jupyter", "lab","--ip=0.0.0.0","--allow-root", "--LabApp.token=''"]
回答1件
あなたの回答
tips
プレビュー