我正在遵循入门指南中的文档:https://github.com/googledatalab/datalab/wiki/Getting-Started
按照说明,我将“containers / datalab / Dockerfile.in”更新为:
# Use this file to create a new docker image derived from the standard datalab image
FROM gcr.io/cloud-datalab/datalab:latest
#MAINTAINER name name <email@example.com>
# The following line will install package fbprophet, as an example
RUN pip install fbprophet
我更新了dockerfile.in后,我试图运行:
./ build.sh& amp ;& amp; ./run.sh
但是,我的本地datalab实例仍然没有安装包。
我之前从未使用过docker,所以我不确定接下来要做什么。
答案 0 :(得分:0)
您必须获取virtualenv。假设您要使用python3
作为内核,请尝试将以下内容添加到docker文件中:
RUN source activate $PYTHON_3_ENV && \
pip install fbprophet && \
source deactivate