노트: Jupyter Lab에 gspread와 oauth2client를 넣는 방법
2502 단어 JupyterLab
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
방문
Reference
이 문제에 관하여(노트: Jupyter Lab에 gspread와 oauth2client를 넣는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tukiyo3/items/2ea977f488a2b3a35a0a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)