0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

メモ: Jupyter Lab に gspreadとoauth2clientを入れる方法

Last updated at Posted at 2020-09-08

jupyter.PNG

Dockerfile
FROM ubuntu:20.04

RUN apt update \
 && apt install -y sudo wget vim curl gawk make gcc \
 && apt clean

RUN wget -q "https://repo.continuum.io/archive/Anaconda3-2019.03-Linux-x86_64.sh" \
  && sh ./Anaconda3-2019.03-Linux-x86_64.sh -b \
  && rm -f Anaconda3-2019.03-Linux-x86_64.sh \
  && curl -sL "https://deb.nodesource.com/setup_10.x" | bash -
RUN apt install -y nodejs \
  && apt clean

ENV PATH=$PATH:/root/anaconda3/bin

RUN pip install gspread \
 && pip install oauth2client

WORKDIR /workspace
VOLUME /workspace
EXPOSE 8888

CMD ["jupyter-lab", "--ip=0.0.0.0","--port=8888" ,"--no-browser", "--allow-root", "--LabApp.token=''"]
ビルド
docker build . -t jupyter
起動
docker run -it --rm -p 8888:8888 -v $(pwd):/workspace jupyter

にアクセス

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?